@charset "UTF-8";
/****************************
==============================
   Index
==============================
1.    Variable
2.    Mixins
3.    Base
4.    Utility
5.    Header
6.    Banner
7.    About
8.    Class
9.    Service
10.   Choose
11.   Team
12.   Schedule
13.   Pricing
14.   Testimonial
15.   Brand
16.   Bodymass
17.   Blog
18.   Flip
19.   Action
20.   Product
21.   Feature
22.   Gallery
23.   Shop
24.   Error
25.   Contact
26.   Breadcrumb
27.   Widget
28.   Pagination
29.   Footer
30.   Woocommerce
/*------------------- Font Family -------------------*/
:root {
	--color-primary: #FF4242;
	--color-secondary: #161619;
	--color-white: #fff;
	--color-body: #7e7e7e;
	--color-grey: #f9f9f9;
	--font-body: "DM Sans", sans-serif;
	--font-title: "Urbanist", sans-serif;
	--font-ico: "IcoFont";
	--border-radius-xs: 4px;
	--border-radius-sm: 6px;
	--border-radius-md: 10px;
	--border-radius-lg: 15px;
	--border-radius-xl: 20px;
}

/*------------------- Typography -------------------*/
* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

* {
	-ms-word-wrap: break-word;
	word-wrap: break-word;
}

body {
	margin: 0;
	padding: 0;
	font-family: var(--font-body);
	font-size: 16px;
	color: var(--color-body);
	font-weight: 400;
	line-height: 24px;
}

p {
	margin: 0 0 20px 0;
}

/*------------------- heading fonts setup -------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--color-secondary);
	font-family: var(--font-title);
	line-height: 1.5;
	font-weight: 600;
}

h1 {
	font-size: 40px;
	line-height: 1.23;
}

@media (max-width: 767px) {
	h1 {
		font-size: 36px;
	}
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 26px;
}

h5 {
	font-size: 22px;
}

h6 {
	font-size: 18px;
}

h1 {
	font-size: 40px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 26px;
}

h5 {
	font-size: 22px;
}

h6 {
	font-size: 18px;
}

.mb--7 {
	margin-bottom: 7px !important;
}

.mb--24 {
	margin-bottom: 24px !important;
}

.mb--40 {
	margin-bottom: 40px !important;
}

.mt--24 {
	margin-top: 24px !important;
}

.mt--18 {
	margin-top: 18px !important;
}

.mt--40 {
	margin-top: 40px !important;
}

/*------------------- Bootstrap Overwrite -------------------*/
@media (min-width: 1200px) {
	.row.gutters-15 {
		margin-right: -7.5px;
		margin-left: -7.5px;
	}

	.row.gutters-15 > [class^=col-] {
		padding-right: 7.5px;
		padding-left: 7.5px;
	}
}

@media (min-width: 1200px) {
	.row.gutters-18 {
		margin-right: -9px;
		margin-left: -9px;
	}

	.row.gutters-18 > [class^=col-] {
		padding-right: 9px;
		padding-left: 9px;
	}
}

@media (min-width: 1200px) {
	.row.gutters-24 {
		margin-right: -12px;
		margin-left: -12px;
	}

	.row.gutters-24 > [class^=col-] {
		padding-right: 12px;
		padding-left: 12px;
	}
}

@media (min-width: 1200px) {
	.row.gutters-30 {
		margin-right: -15px;
		margin-left: -15px;
	}

	.row.gutters-30 > [class^=col-] {
		padding-right: 15px;
		padding-left: 15px;
	}
}

@media (min-width: 1200px) {
	.row.gutters-40 {
		margin-right: -20px;
		margin-left: -20px;
	}

	.row.gutters-40 > [class^=col-] {
		padding-right: 20px;
		padding-left: 20px;
	}
}

.gutter-30 > li, .gutter-30 > div {
	padding-top: 15px !important;
	padding-bottom: 15px !important;
}

.mb--30 {
	margin-bottom: 30px;
}

/*------------------- text color & bg color -------------------*/
.text--primary {
	color: #FF5A0D !important;
}

.bg--primary {
	background-color: #FF5A0D !important;
}

.text--white {
	color: #fff !important;
}

.bg--white {
	background-color: #fff !important;
}

.text--black {
	color: #000 !important;
}

.bg--black {
	background-color: #000 !important;
}

.text--grey {
	color: #f9f9f9 !important;
}

.bg--grey {
	background-color: #f9f9f9 !important;
}

/*------------------- Global styles -------------------*/
html {
	overflow-x: hidden !important;
	width: 100%;
	height: 100%;
	text-rendering: optimizeLegibility;
	scroll-behavior: smooth;
}

#main_content {
	position: relative;
	z-index: 10;
	background-color: #fff;
}

a,
code {
	color: var(--color-primary);
	display: inline-block;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

a:link, a:visited, a:focus {
	text-decoration: none;
	outline: 0;
}

a:hover {
	text-decoration: none;
	color: var(--color-primary);
}

img {
	max-width: 100%;
	height: auto;
}

input:focus,
textarea:focus,
select:focus,
.btn:focus {
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.no-padding {
	padding-right: 0 !important;
	padding-left: 0 !important;
}

.no-padding__left {
	padding-right: 0 !important;
}

.no-padding__right {
	padding-left: 0 !important;
}

.section-padding {
	padding-block: 100px;
}

@media (max-width: 767px) {
	.section-padding {
		padding: 80px 0;
	}
}

section.rt-parallax-transition-off {
	transition: none !important;
}

.customize-page-selector {
	padding-block: 100px;
}

@media (max-width: 767px) {
	.customize-page-selector {
		padding: 80px 0;
	}
}

section,
.section {
	position: relative;
}

.rt-section-1 {
	background-color: #f9f9f9;
}

@media (min-width: 1324px) {
	.container,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl {
		max-width: 1320px;
	}
}

@media screen and (min-width: 1200px) {
	.rt-container-1 {
		max-width: 1715px;
	}
}

@media screen and (min-width: 1200px) {
	.rt-container-2 {
		max-width: 1860px;
	}

	.rt-container-gap-100 {
		padding: 0 100px;
	}
}

.container.padding-0 {
	padding: 0;
}

@media only screen and (min-width: 1200px) {
	.header-style-6 .site-content,
	.header-style-6 footer{
		margin-right: 435px;
	}
}
/*------------------- Contact Form -------------------*/
.customize-page-selector .contact-form-area.style-2 {
	padding-top: 60px;
	overflow: hidden;
	clear: both;
}

.contact-form-style-1 .form-group,
.contact-form-area.style-2 .form-group {
	margin-bottom: 12px;
}

@media screen and (max-width: 1199px) {
	.contact-form-style-1 .form-group,
	.contact-form-area.style-2 .form-group {
		margin-bottom: 30px;
	}
}

.contact-form-style-1 .form-group label {
	color: var(--color-secondary);
	font-weight: 600;
}

.contact-form-style-1 .form-group .rt-form-control,
.contact-form-area.style-2 .form-group .rt-form-control {
	font-size: 16px;
	color: var(--color-secondary);
	background-color: var(--color-white);
	padding: 10px 20px;
	height: 50px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 0;
	border: 1px solid #e3e3e3;
}

.contact-form-style-1.rt-contact-form .form-group .rt-form-control,
.contact-form-area.style-2 .form-group .rt-form-control {
	height: 60px;
}

.contact-form-style-1.rt-contact-form .form-group .rt-form-control.rt-textarea,
.contact-form-area.style-2 .form-group .rt-form-control.rt-textarea {
	color: #9F9F9F;
}

.contact-form-style-1 .form-group .rt-form-control:focus,
.contact-form-area.style-2 .form-group .rt-form-control:focus {
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	border-color: var(--color-secondary);
}

.contact-form-style-1 .form-group .rt-form-control::-webkit-input-placeholder,
.contact-form-area.style-2 .form-group .rt-form-control::-webkit-input-placeholder {
	color: #9F9F9F;
}

.contact-form-style-1 .form-group .rt-form-control::-moz-placeholder,
.contact-form-area.style-2 .form-group .rt-form-control::-moz-placeholder {
	color: #9F9F9F;
}

.contact-form-style-1 .form-group .rt-form-control:-ms-input-placeholder,
.contact-form-area.style-2 .form-group .rt-form-control:-ms-input-placeholder {
	color: #9F9F9F;
}

.contact-form-style-1 .form-group .rt-form-control::-ms-input-placeholder,
.contact-form-area.style-2 .form-group .rt-form-control::-ms-input-placeholder {
	color: #9F9F9F;
}

.contact-form-style-1 .form-group .rt-form-control::placeholder,
.contact-form-area.style-2 .form-group .rt-form-control::placeholder {
	color: #9F9F9F;
}

.contact-form-style-1 .form-group .rt-textarea,
.contact-form-area.style-2 .form-group .rt-textarea {
	min-height: 110px;
	resize: none;
	padding-top: 15px;
}

.contact-form-style-1 .comments-area .form-group .rt-textarea,
.contact-form-area.style-2 .comments-area .form-group .rt-textarea {
	height: 265px;
}

.contact-form-style-1 .submit-btn,
.contact-form-area.style-2 .submit-btn {
	font-size: 15px !important;
	color: var(--color-white);
	background-color: var(--color-primary);
	font-weight: 700 !important;
	border-radius: 0px !important;
	border: 1px solid transparent !important;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	height: 50px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 10px 30px !important;
	width: auto;
	letter-spacing: 0.1em;
}

.contact-form-style-1 .submit-btn:hover,
.contact-form-area.style-2 .submit-btn:hover {
	color: var(--color-primary);
	border-color: var(--color-primary) !important;
	background-color: transparent;
	opacity: 1 !important;
}

.contact-form-style-1 .submit-btn:focus,
.contact-form-area.style-2 .submit-btn:focus {
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.single-blog-wrap .comment-list-area ul li .each-comment {
	margin-bottom: 37px;
}

.single-blog-wrap .contact-form-area.style-2 {
	padding-top: 35px;
}

.comment-list-area > h3 {
	display: block;
	position: relative;
	font-size: 26px;
	margin-bottom: 25px;
	line-height: 1.4;
}

.single-blog-wrap .comment-list-area ul.comment-list {
	list-style: none;
	margin-right: 0;
	padding-right: 0;
}

.main-comments ul.children {
	list-style: none;
	margin-right: 0;
}

.main-content .comment-list-area ul.comment-list {
	list-style: none;
	margin-right: 0;
	padding-right: 0;
}

.comments-area .main-comments .imgholder {
	float: right;
}
.comments-area .main-comments .imgholder img {
	border-radius: 50%;
	overflow: hidden;
	margin-left: 20px;
	margin-bottom: 0px;
	max-width: 90px;
}

@media (max-width: 575px) {
	.comments-area .main-comments .imgholder {
	    float: inherit;
	    margin-bottom: 12px;
	}
	.comments-area .main-comments .imgholder img {
	    max-width: 70px;
	    margin-left: 0;
	}
}
.comments-area .main-comments .comments-body {
	display: flow-root;
}

.comments-area .main-comments .comment-meta {
	font-size: 15px;
	margin-bottom: 20px;
	font-weight: 500;
}

.comments-area .main-comments .comment-meta .comment-time {
	color: #9fa0a0;
	font-weight: 400;
}

.comments-area .main-comments .comment-meta .comment-author a,
.comments-area .main-comments .comment-meta .comment-author {
	color: var(--color-secondary);
	font-size: 20px;
	display: inline-block;
	margin-bottom: 0;
	padding-bottom: 3px;
}

.main-comments .comment-meta .reply-area {
	float: left;
	margin-right: 10px;
	margin-bottom: 10px;
}

.comments-area .main-comments .comment-respond {
	margin-top: 0px;
	margin-bottom: 50px;
}

.comments-area .main-comments .comment-meta .reply-area a.comment-reply-link {
	font-size: 16px;
}

.rt-contact-form .form-response .alert {
	margin-top: 1rem;
}

.rt-contact-form .form-response .alert p {
	margin-bottom: 0;
}

/*------------------- Heading -------------------*/
.section-heading {
	text-align: center;
}

@media screen and (min-width: 1200px) {
	.section-heading {
		margin-right: auto;
		margin-left: auto;
	}
}

.section-heading .heading-title {
	line-height: 46px;
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 15px;
	color: var(--color-secondary);
	position: relative;
}

@media only screen and (max-width: 767px) {
	.section-heading .heading-title {
		font-size: 30px;
		line-height: 36px;
	}
}

@media only screen and (max-width: 479px) {
	.section-heading .heading-title {
		font-size: 24px;
		line-height: 30px;
	}
}

.section-heading .heading-title .shape-yellow {
	top: 0;
	bottom: 0;
	position: absolute;
	left: 100%;
	right: 0;
	background-color: var(--color-primary);
	-webkit-animation: titleBgTransform 0.6s forwards;
	animation: titleBgTransform 0.6s forwards;
}

.section-heading p {
	font-size: 15px;
	color: #7e7e7e;
	line-height: 24px;
}

.section-heading.style-2 {
	text-align: center;
	position: relative;
	height: auto;
	width: auto;
}

.section-heading.style-2 .line {
	height: 60px;
	width: 3px;
	text-align: center;
	display: inline-block;
	position: relative;
	margin-bottom: 5px;
}

.section-heading.style-2 .line:before {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	height: 0;
	background-color: #E4E4E4;
	-webkit-transition: height 0.8s;
	transition: height 0.8s;
}

.section-heading.style-2 .line.section-active::before {
	height: 100%;
}

.section-heading.style-2 p {
	font-family: var(--font-title);
	font-weight: 600;
	font-size: 20px;
	line-height: 24px;
	color: var(--color-primary);
}

/*------------------- Button -------------------*/
.item-button .btn {
	height: 50px;
	font-family: var(--font-title);
	font-weight: 700;
	font-size: 15px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: var(--color-white);
	background-color: var(--color-primary);
	padding: 13px 28px;
	border-radius: 0;
	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	border: none;
	line-height: inherit;
}

.item-button .btn::after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 100%;
	width: 0%;
	height: 100%;
	background-color: var(--color-secondary);
	z-index: -1;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

.item-button .btn:hover {
	color: var(--color-white);
	border-color: var(--color-secondary);
}

.item-button .btn:hover::after {
	visibility: visible;
	opacity: 1;
	right: 0%;
	-webkit-transition: width 0.4s ease;
	transition: width 0.4s ease;
	width: 100%;
}

.item-button .btn:focus {
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.item-button .style-2 {
	background-color: var(--color-primary);
	border-radius: 50px;
}

.item-button .style-3 {
	background-color: var(--color-primary);
	border-radius: 4px;
	color: var(--color-white);
}

.item-button .style-3 svg {
	margin-right: 7px;
}

.item-button .style-3:hover {
	border-color: var(--color-secondary);
}

.item-button .style-3:hover {
	transition: background 0.1s 0.2s;
	background: var(--color-secondary);
}

.item-button .style-4 {
	background-color: var(--color-primary);
	border-radius: 4px;
	color: var(--color-white);
}

.item-button .style-4 svg {
	margin-right: 7px;
}

.item-button .style-4:hover {
	border-color: var(--color-secondary);
}

/*------------------- pulse Animation -------------------*/
@-webkit-keyframes pulse2 {
	0% {
		-webkit-box-shadow: 0 0 0 0 var(--color-primary);
		box-shadow: 0 0 0 0 var(--color-primary);
	}
	70% {
		-webkit-box-shadow: 0 0 0 20px rgba(94, 223, 255, 0);
		box-shadow: 0 0 0 20px rgba(94, 223, 255, 0);
	}
	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(94, 223, 255, 0);
		box-shadow: 0 0 0 0 rgba(94, 223, 255, 0);
	}
}

@keyframes pulse2 {
	0% {
		-webkit-box-shadow: 0 0 0 0 var(--color-primary);
		box-shadow: 0 0 0 0 var(--color-primary);
	}
	70% {
		-webkit-box-shadow: 0 0 0 20px rgba(94, 223, 255, 0);
		box-shadow: 0 0 0 20px rgba(94, 223, 255, 0);
	}
	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(94, 223, 255, 0);
		box-shadow: 0 0 0 0 rgba(94, 223, 255, 0);
	}
}

/*------------------- toBottomFrom Animation -------------------*/
@-webkit-keyframes toBottomFromTop {
	49% {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}
	50% {
		opacity: 0;
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
	}
	51% {
		opacity: 1;
	}
}

@keyframes toBottomFromTop {
	49% {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}
	50% {
		opacity: 0;
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
	}
	51% {
		opacity: 1;
	}
}

/*------------------- toRightFromLeft Animation -------------------*/
@-webkit-keyframes toRightFromLeft {
	49% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}
	50% {
		opacity: 0;
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
	}
	51% {
		opacity: 1;
	}
}

@keyframes toRightFromLeft {
	49% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}
	50% {
		opacity: 0;
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
	}
	51% {
		opacity: 1;
	}
}

/*------------------- title Animation -------------------*/
@-webkit-keyframes titleBgTransform {
	50% {
		left: 0;
		right: 0;
	}
	100% {
		right: 100%;
		left: 0;
	}
}

@keyframes titleBgTransform {
	50% {
		left: 0;
		right: 0;
	}
	100% {
		right: 100%;
		left: 0;
	}
}

@-webkit-keyframes spanAnimation {
	50% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes spanAnimation {
	50% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

/*------------------- progress Animation -------------------*/
@-webkit-keyframes progress {
	0% {
		width: 0;
	}
	100% {
		width: 100%;
	}
}

@keyframes progress {
	0% {
		width: 0;
	}
	100% {
		width: 100%;
	}
}

/*------------------- Dropdown Animation -------------------*/
@-webkit-keyframes dropdown {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: translate3d(0, 0px, 0);
		transform: translate3d(0, 0px, 0);
	}
}

@keyframes dropdown {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: translate3d(0, 0px, 0);
		transform: translate3d(0, 0px, 0);
	}
}

/*------------------- Spin Animation -------------------*/
@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(-360deg);
	}
}

@-webkit-keyframes spin {
	to {
		-webkit-transform: rotate(-1turn);
		transform: rotate(-1turn);
	}
}

@keyframes spin {
	to {
		-webkit-transform: rotate(-1turn);
		transform: rotate(-1turn);
	}
}

/*------------------- countdown -------------------*/
.countdown-layout-2 {
	text-align: center;
}

.countdown-layout-2 .countdown-section {
	text-align: center;
	height: 48px;
	width: 110px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
}

@media only screen and (max-width: 479px) {
	.countdown-layout-2 .countdown-section {
		width: 80px;
	}
}

@media only screen and (max-width: 320px) {
	.countdown-layout-2 .countdown-section {
		margin-bottom: 40px;
	}
}

.countdown-layout-2 .countdown-section .countdown-number {
	font-family: var(--font-title);
	font-weight: 700;
	font-size: 50px;
	line-height: 48px;
	text-align: center;
	letter-spacing: 0.1em;
	color: #FFFFFF;
}

@media only screen and (max-width: 479px) {
	.countdown-layout-2 .countdown-section .countdown-number {
		font-size: 40px;
	}
}

.countdown-layout-2 .countdown-section .countdown-unit {
	font-family: var(--font-title);
	font-weight: 400;
	font-size: 15px;
	line-height: 18px;
	text-align: center;
	letter-spacing: 0.1em;
	color: #FFFFFF;
	margin-top: 3px;
}

.countdown-layout-2 .countdown-section:last-child:after {
	display: none;
}

.countdown-layout-2 .countdown-section:last-child:before {
	display: none;
}

/*------------------- pre-loader-------------------*/
#preloader {
	height: 100%;
	overflow: visible;
	position: fixed;
	width: 100%;
	z-index: 9999999;
	display: block;
	text-align: center;
}

#preloader .loader {
	height: 100%;
	width: 100%;
	position: relative;
	background: #e5e5e5;
}

#preloader .loader .animation-wrap,
#preloader .loader .path {
	position: absolute;
	top: 50%;
	right: 50%;
	margin-right: -100px;
	margin-top: -100px;
	z-index: 0;
	border: 1px solid #c2c2c2;
	background: transparent;
	height: 200px;
	width: 200px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 50%;
}

@media (max-width: 767px) {
	#preloader .loader .animation-wrap,
	#preloader .loader .path {
		height: 175px;
		width: 175px;
	}
}

@media (max-width: 479px) {
	#preloader .loader .animation-wrap,
	#preloader .loader .path {
		height: 150px;
		width: 150px;
		margin-right: -75px;
	}
}

#preloader .loader .animation-wrap .icon,
#preloader .loader .path .icon {
	height: 150px;
	width: 150px;
	background-color: #fff;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	right: 50%;
	margin-right: -75px;
	margin-top: -75px;
	font-size: 40px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

#preloader .loader .path .icon svg {
	position: relative;
	right: -3px;
}

@media (max-width: 767px) {
	#preloader .loader .animation-wrap .icon,
	#preloader .loader .path .icon {
		height: 125px;
		width: 125px;
		margin-right: -63px;
		margin-top: -63px;
	}
}

@media (max-width: 479px) {
	#preloader .loader .animation-wrap .icon,
	#preloader .loader .path .icon {
		height: 100px;
		width: 100px;
		margin-right: -50px;
		margin-top: -50px;
	}
}

#preloader .loader .animation-wrap .icon svg g path:first-child,
#preloader .loader .path .icon svg g path:first-child {
	fill: var(--color-primary);
}

@media (max-width: 767px) {
	#preloader .loader .animation-wrap .icon,
	#preloader .loader .path .icon svg {
		width: 50px;
		height: 50px;
	}
}

@media (max-width: 479px) {
	#preloader .loader .animation-wrap .icon,
	#preloader .loader .path .icon svg {
		width: 40px;
		height: 40px;
	}
}

#preloader .loader .animation-wrap {
	-webkit-animation: spin 1.7s infinite cubic-bezier(0.5, 0, 0.5, 1);
	animation: spin 1.7s infinite cubic-bezier(0.5, 0, 0.5, 1);
}

#preloader .loader .animation-wrap .move {
	margin: 0 auto 0;
	width: 20px;
	height: 20px;
	position: absolute;
	z-index: 100;
	background: var(--color-primary);
	border-radius: 50%;
	right: 90px;
	top: -10px;
}

@media (max-width: 767px) {
	#preloader .loader .animation-wrap .move {
		right: 35px;
	}
}

@media (max-width: 479px) {
	#preloader .loader .animation-wrap .move {
		right: 27px;
	}
}

@-webkit-keyframes spin {
	to {
		-webkit-transform: rotate(-1turn);
		transform: rotate(-1turn);
	}
}

@keyframes spin {
	to {
		-webkit-transform: rotate(-1turn);
		transform: rotate(-1turn);
	}
}

/*------------------- Back-to-top -------------------*/
#back-to-top {
	font-size: 18px;
	color: #fff;
	background: var(--color-primary);
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 50%;
	position: fixed;
	left: 30px;
	bottom: 30px;
	z-index: 99;
	display: none;
	cursor: pointer;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
}

#back-to-top:hover {
	background-color: #c64305;
	color: #fff;
}

#back-to-top:hover i {
	-webkit-animation: toBottomFromTop 0.5s forwards;
	animation: toBottomFromTop 0.5s forwards;
}

#back-to-top i {
	display: inline-block;
}

/*------------------- 5.12 Play btn -------------------*/
.play-btn {
	width: 120px;
	height: 120px;
	background: var(--color-white);
	border-radius: 50%;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.play-btn .play-icon {
	font-weight: 900;
	font-size: 30px;
	line-height: 34px;
	color: var(--color-secondary);
}

.play-btn .play-icon-2 {
	color: var(--color-primary);
	font-size: 40px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	margin-right: 5px;
}

.play-btn .style-2 {
	height: 150px;
	width: 150px;
}

/*------------------- 5.12 Tooltip -------------------*/
.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,
.bs-tooltip-start .tooltip-arrow::before {
	right: -1px;
	border-width: 0.4rem 0.4rem 0.4rem 0;
	border-right-color: #fff;
	display: none;
}

.tooltip-inner {
	font-size: 14px;
	font-weight: 400;
	max-width: 180px;
	padding: 3px 8px;
	color: #000000;
	text-align: center;
	background-color: var(--color-white);
	height: 38px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	line-height: 38px;
	border-radius: 0;
	-webkit-box-shadow: 0 4px 18px hsla(0, 0%, 7%, .3);
	box-shadow: 0 4px 18px hsla(0, 0%, 7%, .3);
}
.tipsy:not(.rtsb-wishlist-btn,.rtsb-compare-btn,.rtsb-quick-view-btn) {
	padding: 0;
}

.tipsy-e .tipsy-arrow {
	display: none;
}

.tipsy-inner {
	background: var(--color-white);
	color: #000;
	border-radius: 0;
	height: 38px;
	line-height: 38px;
	font-size: 14px;
	padding-top: 0;
	padding-bottom: 0;
}

.tipsy-s .tipsy-arrow,
.tipsy-sw .tipsy-arrow {
	display: none;
}

.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,
.bs-tooltip-top .tooltip-arrow::before {
	display: none;
}

/*------------------- 5.12 Modal -------------------*/
.modal-backdrop {
	z-index: 10 !important;
}

@media only screen and (max-width: 620px) {
	.modal.fade {
		-webkit-transition: unset;
		transition: unset;
	}

	.modal.fade .modal-dialog {
		-webkit-transition: unset;
		transition: unset;
	}
}

@media only screen and (min-width: 576px) {
	.modal .modal-dialog {
		max-width: 1296px;
		max-height: 775px;
	}
}

@media only screen and (max-width: 620px) {
	.modal .modal-dialog {
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: end;
		margin: 0;
		max-width: 100%;
	}

	.modal .modal-dialog.modal-dialog-centered {
		min-height: 100%;
	}
}

.modal .modal-dialog .modal-content {
	background: #FFFFFF;
	-webkit-box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
	border-radius: 0;
}

.modal .modal-dialog .modal-content .modal-body {
	padding: 0;
}

.modal .modal-dialog .modal-content .modal-body .item-img img {
	width: 100%;
}

@media only screen and (min-width: 1200px) {
	.modal .modal-dialog .modal-content .modal-body .item-content {
		padding-left: 45px;
	}
}

@media only screen and (max-width: 991px) {
	.modal .modal-dialog .modal-content .modal-body .item-content {
		padding: 20px 0px;
	}
}

@media only screen and (max-width: 767px) {
	.modal .modal-dialog .modal-content .modal-body .item-content {
		padding-right: 20px;
	}
}

.modal .modal-dialog .modal-content .modal-body .item-content .title {
	font-weight: 500;
	font-size: 30px;
	line-height: 36px;
}

@media only screen and (max-width: 767px) {
	.modal .modal-dialog .modal-content .modal-body .item-content .title {
		font-size: 24px;
		line-height: 30px;
	}
}

@media only screen and (max-width: 479px) {
	.modal .modal-dialog .modal-content .modal-body .item-content .title {
		font-size: 22px;
		line-height: 28px;
	}
}

.modal .modal-dialog .modal-content .modal-body .item-content .price {
	font-weight: 600;
	font-size: 30px;
	line-height: 35px;
	color: var(--color-secondary);
	margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
	.modal .modal-dialog .modal-content .modal-body .item-content .price {
		font-size: 24px;
		margin-bottom: 10px;
	}
}

@media only screen and (max-width: 479px) {
	.modal .modal-dialog .modal-content .modal-body .item-content .price {
		font-size: 22px;
	}
}

.modal .modal-dialog .modal-content .modal-body .item-content .item-button {
	margin-top: 40px;
}

@media only screen and (max-width: 767px) {
	.modal .modal-dialog .modal-content .modal-body .item-content .item-button {
		margin-top: 20px;
	}
}

.modal .modal-dialog .modal-content .modal-body .item-content .item-button .btn {
	background: var(--color-primary);
	border: 1px solid var(--color-primary);
	color: var(--color-white);
}

.modal .modal-dialog .modal-content .modal-body .item-content .item-button .btn:hover {
	color: var(--color-white);
	border-color: var(--color-secondary);
}

.modal .modal-dialog .modal-content .modal-header .close-modal {
	position: absolute;
	left: -50px;
	top: -20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	cursor: pointer;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

/*------------------- 5.12 Breadcrumb -------------------*/
.inner-page-banner {
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: 1;
	background-position: center center;
}
.transparent-header .inner-page-banner.image-banner{
	margin-top: -96px;
}
@media (max-width: 1199px) {
	.inner-page-banner.image-banner {
		padding: 140px 0;
	}
}

@media (max-width: 991px) {
	.inner-page-banner.image-banner {
		padding: 120px 0;
	}
}

@media (max-width: 767px) {
	.inner-page-banner.image-banner {
		padding: 100px 0;
	}
}

.inner-page-banner.image-banner:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	left: 0;
	z-index: -1;
}

.main-breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	font-size: 16px;
	color: #6a6a6a;
	font-weight: 700;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.main-breadcrumb span a {
	color: #6a6a6a;
}

.main-breadcrumb span a:hover {
	color: var(--color-primary);
}

.main-breadcrumb .current-item,
.main-breadcrumb span.current {
	font-weight: 400;
}

.breadcrumb-wrap-1 {
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	padding: 265px 0px 170px;
	position: relative;
	margin-top: -100px;
}

.breadcrumb-wrap-1::after {
	content: "";
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	position: absolute;
	top: 0;
	right: 0;
}

.breadcrumb-box-1 {
	position: relative;
	z-index: 1;
}

.breadcrumb-box-1 .breadcrumb {
	margin-bottom: 10px;
}

.breadcrumb-box-1 .breadcrumb .breadcrumb-item {
	font-weight: 400;
	font-size: 16px;
	line-height: 21px;
	color: #FFFFFF;
}

.breadcrumb-box-1 .breadcrumb .breadcrumb-item:first-child:before {
	display: none;
}

.breadcrumb-box-1 .breadcrumb .breadcrumb-item a {
	color: var(--color-white);
	font-weight: 700;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.breadcrumb-box-1 .breadcrumb .breadcrumb-item a:hover {
	color: var(--color-primary);
}

.breadcrumb-box-1 .breadcrumb .breadcrumb-item:before {
	float: right;
	padding-left: 0.5rem;
	color: var(--color-white);
	content: var(--bs-breadcrumb-divider, ">");
}

.breadcrumb-box-1 .title {
	color: var(--color-white);
	margin-bottom: 0;
}

.breadcrumb-wrap-2 {
	background-color: #f6f6f6;
	padding: 20px 0px;
}

.breadcrumb-wrap-2 .breadcrumb-box-1 .breadcrumb .breadcrumb-item {
	color: #6a6a6a;
}

.breadcrumb-wrap-2 .breadcrumb-box-1 .breadcrumb .breadcrumb-item a {
	color: #6a6a6a;
}

.breadcrumb-wrap-2 .breadcrumb-box-1 .breadcrumb .breadcrumb-item a:hover {
	color: var(--color-primary);
}

.breadcrumb-wrap-2 .breadcrumb-box-1 .breadcrumb .breadcrumb-item:before {
	color: #6a6a6a;
}

.breadcrumb-wrap-3 {
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	position: relative;
	padding: 270px 0px 160px;
	margin-top: -100px;
}

@media only screen and (max-width: 991px) {
	.breadcrumb-wrap-3 {
		padding: 150px 0px;
		margin-top: 0;
	}
}

@media only screen and (max-width: 479px) {
	.breadcrumb-wrap-3 {
		padding: 100px 0px;
	}
}

.breadcrumb-wrap-3::before {
	content: "";
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	position: absolute;
	top: 0;
	right: 0;
}

/*------------------- FAQ -------------------*/
.accordion-item {
	background-color: transparent;
	border: 0;
	border-top: 1px solid #dadada;
	border-bottom: 1px solid #dadada;
}

.accordion-item:first-of-type {
	border-top: 0;
}

.accordion-item:last-of-type {
	border-bottom: 0;
}

.accordion-item .accordion-button {
	position: relative;
	padding: 43px 0;
	outline: none;
	box-shadow: none;
	font-size: 30px;
	line-height: 36px;
	font-weight: 600;
	color: #000;
	background-color: transparent;
}

@media (max-width: 991px) {
	.accordion-item .accordion-button {
		padding: 35px 0;
		font-size: 26px;
		line-height: 30px;
	}
}

@media (max-width: 480px) {
	.accordion-item .accordion-button {
		padding: 25px 0;
		font-size: 22px;
	}
}

.accordion-item .accordion-button span.single-item {
	color: #A9A9A9;
	font-size: 22px;
}

@media (max-width: 991px) {
	.accordion-item .accordion-button span.single-item {
		font-size: 18px;
	}
}

@media (max-width: 480px) {
	.accordion-item .accordion-button span.single-item {
		font-size: 16px;
	}
}

.accordion-item .accordion-button:not(.collapsed):after,
.accordion-item .accordion-button:after {
	display: none;
}

.accordion-item .accordion-button:not(.collapsed) {
	background-color: transparent;
	box-shadow: none;
	outline: none;
	color: var(--color-primary);
}

.accordion-item .accordion-button.collapsed:focus {
	box-shadow: none;
	outline: none;
}

.accordion-item .accordion-button:hover {
	background-color: transparent;
}

.accordion-item .accordion-button:focus {
	border: 0;
	box-shadow: none;
}

.accordion-item .accordion-button .rt-svg,
.accordion-item .accordion-button .rt-icon {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.accordion-item .accordion-button .default-item {
	opacity: 1;
	visibility: visible;
}

.accordion-item .accordion-button .active-item {
	opacity: 0;
	visibility: hidden;
}

.accordion-item .accordion-button:not(.collapsed) .default-item {
	opacity: 0;
	visibility: hidden;
}

.accordion-item .accordion-button:not(.collapsed) .active-item {
	opacity: 1;
	visibility: visible;
}

.accordion-item .accordion-body {
	padding: 0 0 20px;
}

.accordion-item .accordion-body p {
	transition: all ease 0.31s;
	font-size: 15px;
	font-weight: 400;
	line-height: 28px;
	color: var(--color-body);
	font-family: "DM Sans", sans-serif;
}

/*------------------- 5.12 Pagination -------------------*/
.woocommerce-pagination {
	margin-top: 60px;
}

.woocommerce-pagination .pagination {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

@media only screen and (max-width: 479px) {
	.woocommerce-pagination .pagination {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

.woocommerce-pagination .pagination .page-item {
	border: 0;
	border-radius: 0;
	border-top: 2px solid #d9d9d9;
}

.woocommerce-pagination .pagination .page-item span,
.woocommerce-pagination .pagination .page-item a {
	border: 0;
	font-family: var(--font-title);
	font-weight: 600;
	font-size: 15px;
	line-height: 18px;
	text-align: center;
	color: #959597;
	padding: 15px 40px;
	display: inline-block;
}

@media ( max-width: 480px) {
	.woocommerce-pagination .pagination .page-item span,
	.woocommerce-pagination .pagination .page-item a {
		padding: 15px 20px;
	}
}

.woocommerce-pagination .pagination .page-item.active span,
.woocommerce-pagination .pagination .page-item.active a {
	color: var(--color-primary);
}

.woocommerce-pagination .pagination .page-item a:focus {
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.woocommerce-pagination .pagination .page-item.pagi-previous span i,
.woocommerce-pagination .pagination .page-item.pagi-previous a i {
	margin-left: 10px;
}

.woocommerce-pagination .pagination .page-item.pagi-next span i,
.woocommerce-pagination .pagination .page-item.pagi-next a i {
	margin-right: 10px;
}

.woocommerce-pagination .pagination .page-item a:hover {
	color: var(--color-secondary);
	background-color: transparent;
}

.woocommerce-pagination .pagination .active {
	position: relative;
}

.woocommerce-pagination .pagination .active::before {
	content: "";
	height: 2px;
	width: 100%;
	background-color: var(--color-primary);
	position: absolute;
	top: -2px;
	right: 50%;
	-webkit-transform: translateX(50%);
	transform: translateX(50%);
}

.woocommerce-pagination .pagination .active .page-link {
	background-color: transparent;
	color: var(--color-secondary);
}

.pagination-area ul {
	text-align: center;
	margin-top: 50px;
	margin-bottom: 0;
	padding-right: 0;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pagination-area ul li {
	display: inline-flex;
	border: none;
	margin-left: 6px;
	position: relative;
}

.pagination-area ul li:last-child {
	margin-left: 0;
}

.pagination-area ul li a {
	text-align: center;
	display: inline-block;
	font-size: 1.125rem;
	color: #959597;
	background: #ffffff;
	border: 1px solid #d9d9d9;
	border-radius: 3px;
	padding: 0;
	height: 42px;
	width: 42px;
	line-height: 42px;
}

.pagination-area ul li span {
	text-align: center;
	display: inline-block;
	font-size: 1.125rem;
	color: #959597;
	background: #ffffff;
	border: 1px solid #d9d9d9;
	border-radius: 3px;
	padding: 0;
	height: 42px;
	width: 42px;
	line-height: 42px;
}

.pagination-area ul li.active span {
	color: #fff;
	background: var(--color-primary);
	border: 1px solid var(--color-primary);
}

.pagination-area ul li a:hover {
	background-color: var(--color-primary);
	border-color: transparent;
	color: #ffffff;
}

.pagination-area ul li span.current {
	background-color: #2962ff;
	border-color: transparent;
	color: #ffffff;
}

.pagination-area ul li.active a {
	background-color: #2962ff;
	border-color: transparent;
	color: #ffffff;
}

@media (max-width: 767px) {
	.pagination-area ul li {
		margin-top: 8px;
		margin-left: 8px;
	}

	.pagination-area ul li span,
	.pagination-area ul li a {
		height: 40px;
		width: 40px;
		line-height: 38px;
	}
}

.pagination-area ul li i {
	font-size: 1rem;
	font-weight: 700;
}

.jabee-page-links {
	margin-bottom: 40px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	padding-top: 30px;
	clear: both;
	transition: all 0.3s ease-in;
}

.jabee-page-links span.page-number {
	transition: all 0.3s ease-in;
}

.jabee-page-links > span.post-page-numbers:hover > span {
	color: #fff;
	line-height: 40px;
}

.jabee-page-links > span.post-page-numbers {
	text-align: center;
	display: inline-block;
	font-size: 1.125rem;
	color: #7a7a7a;
	background: #ffffff;
	border: 1px solid #d9d9d9;
	border-radius: 3px;
	padding: 0;
	height: 42px;
	width: 42px;
	line-height: 42px;
	margin-left: 6px;
}

.jabee-page-links > span.post-page-numbers.current {
	color: #fff;
	background: var(--color-primary);
	border: 1px solid var(--color-primary);
}

.jabee-page-links a,
.jabee-page-links a:link,
.jabee-page-links a:visited {
	text-align: center;
	display: inline-block;
	font-size: 1.125rem;
	color: #959597;
	background: #ffffff;
	border: 1px solid #d9d9d9;
	border-radius: 3px;
	padding: 0;
	height: 42px;
	width: 42px;
	line-height: 42px;
	margin-left: 6px;
}

.jabee-page-links a:hover {
	background-color: var(--color-primary);
	border-color: transparent;
	color: #ffffff;
}

/*------------------- 5.12 Accordion -------------------*/
.description-layout-1 .accordion-item {
	border: 0;
	border-bottom: 2px solid #e8e8e8;
	padding-bottom: 20px;
	margin-bottom: 30px;
	border-radius: 0;
}

.rt-accordion.style-2 .description-layout-1:last-child .accordion-item {
	border-bottom: 0;
}

.description-layout-1 .accordion-item .accordion-body {
	padding: 10px 0px;
}

.description-layout-1 .accordion-button {
	display: block;
	width: 100%;
	text-align: right;
	padding: 3px 0;
	border: 0;
	position: relative;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	color: var(--color-secondary);
	background-color: transparent;
	font-weight: 600;
	font-size: 16px;
	line-height: 19px;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.description-layout-1 .accordion-button .accr-plus,
.description-layout-1 .accordion-button .accr-minus {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: absolute;
	left: 0;
	top: 0;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	width: 14px;
	height: 16px;
	font-size: 16px;
	color: #9c9c9c;
}

.description-layout-1 .accordion-button .accr-plus {
	display: none;
}

.description-layout-1 .accordion-button.collapsed {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.description-layout-1 .accordion-button.collapsed .accr-minus {
	display: none;
}

.description-layout-1 .accordion-button.collapsed .accr-plus {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	color: #9c9c9c;
}

.description-layout-1 .accordion-button:focus {
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.jabee_faq .elementor-accordion .elementor-accordion-item {
	border-bottom: 1px solid #dadada !important;
}

.jabee_faq .elementor-accordion .elementor-accordion-item:last-child {
	border: none !important;
}

/*------------------- 5.12 Widget -------------------*/
.woocommerce .rt-sidebar.style-2,
.sidebar-widget {
	background: #FFFFFF;
	-webkit-box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.05);
	box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.05);
	padding: 10px 45px;
}

.woocommerce .rt-sidebar.style-2 .widget:last-child,
.sidebar-widget .widget:last-child {
	margin-bottom: 0 !important;
	border-bottom: 0;
}

@media only screen and (max-width: 991px) {
	.woocommerce .rt-sidebar.style-2,
	.widget-break-lg {
		margin-top: 30px;
	}
}

.widget {
	border-bottom: 1px solid #d9d9d9;
	padding: 45px 0px;
}

.rt-sidebar.style-2 .widget {
	margin: 0;
}

.woocommerce .rt-sidebar.style-2 .widget-title,
.widget .item-subtitle {
	font-weight: 700;
	font-size: 24px;
	line-height: 29px;
	color: #000000;
	margin-bottom: 15px;
}

.widget-brand-area .brand-layout {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media only screen and (max-width: 320px) {
	.widget-brand-area .brand-layout {
		display: block;
	}
}

.widget-brand-area .brand-layout ul li {
	margin-bottom: 30px;
}

.widget-brand-area .brand-layout ul li:last-child {
	margin-bottom: 0;
}

.widget-price-area .rt-price-filter-wrap .noUi-target {
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	background-color: #f1f1f1;
	border: 0;
	height: 3px;
}

.widget-price-area .rt-price-filter-wrap .noUi-target .noUi-base .noUi-origin .noUi-handle {
	top: -6px;
	right: -1px;
	background: #00C9FF;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	width: 7px;
	height: 15px;
	border-radius: 0;
}

.widget-price-area .rt-price-filter-wrap .noUi-target .noUi-base .noUi-origin .noUi-handle::after {
	display: none;
}

.widget-price-area .rt-price-filter-wrap .noUi-target .noUi-base .noUi-origin .noUi-handle:before {
	display: none;
}

.widget-price-area .rt-price-filter-wrap .noUi-target .noUi-base .noUi-connect {
	background: #13B6E1;
	-webkit-box-shadow: none;
	box-shadow: none;
	border-radius: 4px;
}

.widget-price-area .rt-price-filter-wrap .price-range-select {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 7px;
	gap: 5px;
}

.widget-price-area .rt-price-filter-wrap .price-range-select .price-range {
	color: #161F38;
	font-weight: 500;
	font-size: 15px;
	line-height: 35px;
}

.widget-price-area .rt-price-filter-wrap .price-range-select .price-range.range-title {
	color: #9A9A9A;
}

.widget-price-area .product-btn-list {
	margin-top: 45px;
}

.widget-price-area .product-btn-list ul li {
	margin-bottom: 5px;
}

.widget-price-area .product-btn-list ul li:last-child {
	margin-bottom: 0;
}

.widget-price-area .product-btn-list ul li .product-btn {
	display: inline-block;
	background-color: var(--color-primary);
	font-family: var(--font-title);
	font-weight: 600;
	font-size: 18px;
	line-height: 22px;
	text-align: center;
	color: var(--color-white);
	border: 1px solid var(--color-primary);
	padding: 13px 20px;
	width: 160px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.widget-price-area .product-btn-list ul li .product-btn:focus {
	outline: 0;
	-webkit-box-shadow: 0;
	box-shadow: 0;
}

.widget-price-area .product-btn-list ul li .product-btn:hover {
	background-color: transparent;
	color: var(--color-secondary);
}

@media only screen and (max-width: 1199px) {
	.rt-sidebar.style-2 {
		margin-top: 80px;
		display: inherit;
	}

	.woocommerce .rt-sidebar.style-2 {
		margin-top: 0;
		margin-bottom: 50px;
	}
}

.blog-widget {
	background-color: #f7f7f7;
	padding: 50px 45px;
	margin-bottom: 30px;
	overflow: hidden;
}

@media only screen and (max-width: 1199px) {
	.blog-widget {
		padding: 30px;
	}
}

.blog-widget .subtitle {
	font-size: 24px;
	margin-bottom: 20px;
}

.blog-widget:last-child {
	margin-bottom: 0;
}

.rt-sidebar .blog-widget ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.rt-sidebar .blog-widget ul li {
	float: right;
	width: 100%;
	margin: 0 0 10px;
	padding: 0 0 10px;
	position: relative;
	transition: all 140ms ease-in-out;
}

.rt-sidebar .blog-widget ul li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.rt-sidebar .blog-widget.widget_categories ul li,
.rt-sidebar .blog-widget.widget_archive ul li {
	width: 100%;
	float: right;
	line-height: 1.6;
	text-align: left;
}

.rt-sidebar .blog-widget ul li a {
	position: relative;
	font-family: "Urbanist";
	font-weight: 500;
	font-size: 18px;
	line-height: 22px;
	color: var(--color-secondary);
	transition: all 140ms ease-in-out;
}

.rt-sidebar .blog-widget ul li a:hover {
	color: var(--color-primary);
}

.rt-sidebar .blog-widget.widget_categories ul li a,
.rt-sidebar .blog-widget.widget_archive ul li a {
	float: right;
}

.rt-sidebar .blog-widget ul li ul.children,
.rt-sidebar .blog-widget ul li ul.sub-menu {
	padding-right: 17px;
	float: right;
	width: 100%;
}

.rt-sidebar .blog-widget ul li ul.children li:last-child,
.rt-sidebar .blog-widget ul li ul.sub-menu li:last-child {
	margin-bottom: 0px;
	padding-bottom: 0px;
}

.rt-sidebar .blog-widget ul li ul {
	margin-top: 10px;
	padding-top: 10px;
}

.rt-sidebar .blog-widget ul li ul.children li:last-child,
.rt-sidebar .blog-widget ul li ul.sub-menu li:last-child {
	margin-bottom: 0px;
	padding-bottom: 0px;
}

.rt-sidebar .blog-widget.widget_recent_comments ul li a,
.rt-sidebar .blog-widget.widget_rss ul li a {
	display: contents;
}

.widget-search-box .input-group .form-control {
	font-weight: 400;
	font-size: 15px;
	line-height: 20px;
	color: #9A9A9A;
	border: 0;
	border-radius: 0;
	background-color: transparent;
	padding: 0;
	border-bottom: 1px solid var(--color-secondary);
}

.widget-search-box .input-group .form-control:focus {
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.footer-widget.widget_search .widget-search-box .input-group .btn-outline-secondary,
.footer-widget.widget_search .widget-search-box .input-group .form-control {
	border-bottom: 1px solid #3C3C3D;
}

.widget-search-box .input-group .btn-outline-secondary {
	border: 0;
	border-radius: 0;
	border-bottom: 1px solid var(--color-secondary);
}

.widget-search-box .input-group .btn-outline-secondary:hover {
	background-color: transparent;
	color: var(--color-primary);
}

.widget-search-box .input-group .btn-outline-secondary:focus {
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.widget-category-box-2 .categoery-list ul li:last-child a {
	margin-bottom: 0;
}

.widget-category-box-2 .categoery-list ul li a {
	font-family: "Urbanist";
	font-weight: 500;
	font-size: 18px;
	line-height: 22px;
	color: var(--color-secondary);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 25px;
}

.widget-category-box-2 .categoery-list ul li a:hover {
	color: var(--color-primary);
}

.widget-category-box-2 .categoery-list ul li a:hover .number {
	color: #D8012C;
}

.widget-category-box-2 .categoery-list ul li a .number {
	font-weight: 500;
	font-size: 18px;
	line-height: 22px;
	color: #727272;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.widget-post-box .post-box-1 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}

.widget-post-box .post-box-1 .item-img .rtin-thumb {
	width: 90px;
	overflow: hidden;
}

.widget-post-box .post-box-1:hover .item-img a img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.widget-post-box .post-box-1:last-child {
	margin-bottom: 0;
}

.widget-post-box .post-box-1 .item-img {
	overflow: hidden;
}

.widget-post-box .post-box-1 .item-img a img {
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.widget-post-box .post-box-1 .content {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.widget-post-box .post-box-1 .content .date {
	font-weight: 400;
	font-size: 15px;
	line-height: 20px;
	color: #808080;
}

.widget-post-box .post-box-1 .content .title {
	margin-bottom: 0;
}

.widget-post-box .post-box-1 .content .title .rt-title a {
	font-weight: 600;
	font-size: 18px;
	line-height: 26px;
	color: #000000;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

@media only screen and (max-width: 1199px) {
	.widget-post-box .post-box-1 .content .title .rt-title a {
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}
}

.widget-post-box .post-box-1 .content .title .rt-title a:hover {
	color: var(--color-primary);
}

.widget-tag-box .tag-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 5px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.blog-widget .tagcloud a,
.widget-tag-box .tag-list li a,
.footer-widget.widget_tag_cloud a {
	background: #EBEBEB;
	font-weight: 400;
	font-size: 15px !important;
	line-height: 20px;
	color: #000000;
	padding: 10px 15px;
	margin-bottom: 4px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.blog-widget .tagcloud a:hover,
.widget-tag-box .tag-list li a:hover,
.footer-widget.widget_tag_cloud a:hover {
	color: var(--color-white);
	background-color: var(--color-primary);
}

.widget-gallery-box .gallery-list {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 105px 5px 105px 5px 105px;
	grid-template-columns: repeat(3, 105px);
	grid-gap: 5px;
}

@media only screen and (max-width: 1199px) {
	.widget-gallery-box .gallery-list {
		-ms-grid-columns: 115px 5px 115px;
		grid-template-columns: repeat(2, 115px);
	}
}

@media only screen and (max-width: 991px) {
	.widget-gallery-box .gallery-list {
		-ms-grid-columns: 155px 5px 155px 5px 155px 5px 155px;
		grid-template-columns: repeat(4, 155px);
	}
}

@media only screen and (max-width: 767px) {
	.widget-gallery-box .gallery-list {
		-ms-grid-columns: 110px 5px 110px 5px 110px 5px 110px;
		grid-template-columns: repeat(4, 110px);
	}
}

@media only screen and (max-width: 479px) {
	.widget-gallery-box .gallery-list {
		-ms-grid-columns: 105px 5px 105px 5px 105px;
		grid-template-columns: repeat(3, 105px);
	}
}

@media only screen and (max-width: 375px) {
	.widget-gallery-box .gallery-list {
		-ms-grid-columns: 135px 5px 135px;
		grid-template-columns: repeat(2, 135px);
		height: 100%;
	}
}

@media only screen and (max-width: 320px) {
	.widget-gallery-box .gallery-list {
		-ms-grid-columns: 105px 5px 105px;
		grid-template-columns: repeat(2, 105px);
		height: 100%;
	}
}

.widget-gallery-box .gallery-list li a {
	overflow: hidden;
}

@media only screen and (max-width: 991px) {
	.widget-gallery-box .gallery-list li a {
		width: 100%;
		height: 100%;
	}
}

.widget-gallery-box .gallery-list li a img {
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-webkit-transform: scale(1);
	transform: scale(1);
}

@media only screen and (max-width: 991px) {
	.widget-gallery-box .gallery-list li a img {
		width: 100%;
		height: 100%;
		-o-object-fit: cover;
		object-fit: cover;
	}
}

.widget-gallery-box .gallery-list li a:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.jabee-blog-insta-feed {
	margin-top: -10px !important;
}

.jabee-blog-insta-feed #sbi_images {
	padding-right: 0 !important;
}

#sb_instagram.sbi_col_3.jabee-blog-insta-feed #sbi_images .sbi_item,
#sb_instagram.sbi_col_3.jabee-blog-insta-feed.sbi_disable_mobile #sbi_images .sbi_item {
	width: 31.33%;
	margin-left: 5px !important;
}

/*------------------- 5.12 Table -------------------*/
.size-table {
	background: #FFFFFF;
	-webkit-box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
	padding: 30px;
	position: absolute;
	right: 0;
	left: 0;
	top: 80px;
	z-index: 1;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	width: 100%;
	z-index: 2;
	margin-top: 28px;
}

.size-table span.close {
	font-size: 18px;
	text-align: left;
	cursor: pointer;
	display: block;
}

.size-table .title-chart {
	font-weight: 600;
	font-size: 30px;
	line-height: 36px;
	text-align: center;
	color: #000;
	margin-bottom: 35px;
}

@media only screen and (max-width: 479px) {
	.size-table .title-chart {
		font-size: 24px;
		line-height: 30px;
	}
}

.size-table table {
	width: 100%;
	border-collapse: collapse;
}

.size-table .rt-title {
	font-weight: 400;
	font-size: 36px;
	line-height: 43px;
	margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
	.size-table .rt-title {
		font-size: 30px;
		line-height: 36px;
	}
}

@media only screen and (max-width: 479px) {
	.size-table .rt-title {
		font-size: 24px;
		line-height: 30px;
	}
}

.size-table th {
	background: transparent;
	color: #000;
	font-weight: 500;
	font-family: var(--font-title);
}

.size-table td, .size-table th {
	padding: 10px;
	border: 1px solid #d9d9d9;
	text-align: right;
	font-size: 16px;
	color: #000;
	font-family: var(--font-title);
}

@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {
	.size-table table {
		width: 100%;
	}

	.size-table table, .size-table thead, .size-table tbody, .size-table th, .size-table td, .size-table tr {
		display: block;
	}

	.size-table thead tr {
		position: absolute;
		top: -9999px;
		right: -9999px;
	}

	.size-table tr {
		border: 1px solid #d9d9d9;
	}

	.size-table td {
		border: none;
		border-bottom: 1px solid #d9d9d9;
		position: relative;
		padding-right: 50%;
	}

	.size-table td:before {
		position: absolute;
		top: 6px;
		right: 6px;
		width: 45%;
		padding-left: 10px;
		white-space: nowrap;
		content: attr(data-column);
		color: #000;
		font-weight: bold;
	}
}

.size-table.show {
	visibility: visible;
	opacity: 1;
	top: 100%;
}

/*------------------- 5.12 Magic Cursor -------------------*/
body.cursor-point #magicPointer {
	width: 24px;
	height: 24px;
	background: var(--color-secondary);
	opacity: 0.25;
	border: 0;
}

body #magicPointer {
	height: 6px;
	width: 6px;
	top: 0;
	right: 0;
	position: fixed;
	background: var(--color-secondary);
	border-radius: 50%;
	pointer-events: none;
	-webkit-transition: background 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), width 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), height 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-box-shadow 0.2s;
	transition: background 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), width 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), height 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-box-shadow 0.2s;
	transition: background 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), width 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), height 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.2s;
	transition: background 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), width 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), height 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.2s, -webkit-box-shadow 0.2s;
	z-index: 9999;
	border: 0;
}

body.cursor-point #magicPointer.pointer-blur {
	width: 36px;
	height: 36px;
	opacity: 0.25;
}

/*------------------- 5.12 Fixed PopUp -------------------*/
.fixed-popup-wrap {
	background-color: var(--color-white);
	padding: 20px 0px;
	-webkit-transition: all 350ms ease;
	transition: all 350ms ease;
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
	position: fixed;
	bottom: 0;
	right: 0;
	width: 100%;
	z-index: 999;
	-webkit-box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
}

.fixed-popup-wrap .fixed-popup-layout {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.fixed-popup-wrap .fixed-popup-layout .popup-img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.fixed-popup-wrap .fixed-popup-layout .popup-img .item-img {
	max-width: 140px;
}

.fixed-popup-wrap .fixed-popup-layout .rt-content {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.fixed-popup-wrap .fixed-popup-layout .rt-content .title {
	font-size: 24px;
	line-height: 29px;
	font-weight: 400;
}

@media only screen and (min-width: 1200px) {
	.fixed-popup-wrap .fixed-popup-layout .rt-content .title {
		width: 255px;
	}
}

.fixed-popup-wrap .fixed-popup-layout .rt-content .price {
	font-family: var(--font-title);
	font-weight: 700;
	font-size: 22px;
	line-height: 24px;
	color: var(--color-secondary);
}

.fixed-popup-wrap .fixed-popup-layout .fixed-popup-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 8px;
}

.fixed-popup-wrap .fixed-popup-layout .fixed-popup-content form.variations_form {
	display: flex;
	align-items: center;
	gap: 40px;
}

.fixed-popup-wrap .fixed-popup-layout .fixed-popup-content form.variations_form table.variations {
	width: auto;
	margin-top: 25px;
}

.fixed-popup-wrap .fixed-popup-layout .fixed-popup-content form.variations_form table.variations tbody {
	display: flex;
	gap: 20px;
}

.fixed-popup-wrap .fixed-popup-layout .fixed-popup-content form.variations_form table.variations tr th,
.fixed-popup-wrap .fixed-popup-layout .fixed-popup-content form.variations_form table.variations tr td {
	display: block;
	text-align: right;
	border: 0;
	padding: 0;
}

.rtwpvs .fixed-popup-wrap .fixed-popup-layout .fixed-popup-content .rtwpvs-terms-wrapper .rtwpvs-term:not(.rtwpvs-radio-term) {
	margin-top: 0;
}

.fixed-popup-content .single-add-to-cart-wrapper .compare,
.fixed-popup-content .single-add-to-cart-wrapper .yith-wcqv-button,
.fixed-popup-content .single-add-to-cart-wrapper .rtsb-compare-btn,
.fixed-popup-content .single-add-to-cart-wrapper .rtsb-wishlist-btn,
.fixed-popup-content .single-add-to-cart-wrapper .rtsb-quick-view-btn {
	display: none;
}

.fixed-popup-wrap.scrolling {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

/*------------------- 5.12 Rating -------------------*/
.rating-wrapper .value,
.rating-wrapper .rating {
	color: #FABD47;
	font-size: 15px;
}

.rating-wrapper .value {
	color: #95a5a6;
}

.rating-wrapper .value,
.rating-wrapper .star {
	line-height: 1.4;
}

.rating {
	display: block;
	float: right;
	direction: ltr;
	position: relative;
}

.rating a,
.rating span {
	cursor: default;
}

.rating.active:hover a,
.rating.active:hover span {
	cursor: pointer;
}

.rating .star {
	display: block;
	float: left;
	width: 16px;
	height: 16px;
	font-family: FontAwesome;
	position: relative;
	margin-left: 3px;
}

.rating .star:before,
.rating .star:after {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
}

.rating .star:before {
	content: "\f006";
	z-index: 20;
}

.rating .star:after {
	visibility: hidden;
	content: "\f005";
	z-index: 40;
}

.rating.r1 > .star:nth-last-child(1):after,
.rating.r2 > .star:nth-last-child(1):after,
.rating.r2 > .star:nth-last-child(2):after,
.rating.r3 > .star:nth-last-child(1):after,
.rating.r3 > .star:nth-last-child(2):after,
.rating.r3 > .star:nth-last-child(3):after,
.rating.r4 > .star:nth-last-child(1):after,
.rating.r4 > .star:nth-last-child(2):after,
.rating.r4 > .star:nth-last-child(3):after,
.rating.r4 > .star:nth-last-child(4):after,
.rating.r5 > .star:nth-last-child(1):after,
.rating.r5 > .star:nth-last-child(2):after,
.rating.r5 > .star:nth-last-child(3):after,
.rating.r5 > .star:nth-last-child(4):after,
.rating.r5 > .star:nth-last-child(5):after {
	visibility: visible;
}

.rating.r1.r05 > .star:nth-last-child(2):after,
.rating.r2.r05 > .star:nth-last-child(3):after,
.rating.r3.r05 > .star:nth-last-child(4):after,
.rating.r4.r05 > .star:nth-last-child(5):after {
	width: 60%;
	overflow: hidden;
	text-indent: -46%;
	right: 0;
	visibility: visible;
}

.rating.active:hover > .star:after,
.rating.active.r1.r05:hover > .star:after,
.rating.active.r2.r05:hover > .star:after,
.rating.active.r3.r05:hover > .star:after,
.rating.active.r4.r05:hover > .star:after {
	visibility: hidden;
}

.rating.active > .star:hover:after,
.rating.active > .star:hover ~ .star:after,
.rating.active:hover > .star:hover:after,
.rating.active:hover > .star:hover ~ .star:after {
	visibility: visible !important;
	width: 100% !important;
	text-indent: 0;
	width: 100%;
}

.rating-wrapper:after {
	display: block;
	content: "";
	clear: both;
}

.rating-wrapper .value {
	display: inline-block;
}

/*------------------- 5.12 Shop Toolbar -------------------*/
.shop-toolbar {
	margin-bottom: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	position: relative;
}

@media only screen and (max-width: 479px) {
	.shop-toolbar {
		margin-bottom: 30px;
	}
}

@media only screen and (max-width: 479px) {
	.shop-toolbar .filter-wrap {
		width: 100%;
	}
}

.shop-toolbar .filter-wrap .item-filter .filter-btn {
	border: 1px solid #CDCDCD;
	padding: 10px 20px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

@media only screen and (max-width: 479px) {
	.shop-toolbar .filter-wrap .item-filter .filter-btn {
		width: 100%;
	}
}

.shop-toolbar .filter-wrap .item-filter .filter-btn .icon {
	margin-left: 10px;
	position: relative;
	top: -1px;
}

.shop-toolbar .filter-wrap .item-filter .filter-btn .icon svg {
	color: #292d32;
}

.shop-toolbar .filter-wrap .item-filter .filter-btn .text {
	color: var(--color-secondary);
	font-family: var(--font-title);
	font-weight: 600;
	font-size: 18px;
}

.advanced-search-box {
	position: absolute;
	right: 0;
	left: 0;
	top: 80px;
	z-index: 30;
	visibility: hidden;
	opacity: 0;
	margin-top: 15px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	width: 100%;
}

.advanced-search-box.show {
	visibility: visible;
	opacity: 1;
	top: 100%;
}

.advanced-banner-box {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	background: #FFFFFF;
	-webkit-box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.1);
	padding: 55px 45px 40px;
	position: relative;
}

@media only screen and (max-width: 991px) {
	.advanced-banner-box {
		-ms-grid-columns: (1fr) [ 3 ];
		grid-template-columns: repeat(3, 1fr);
	}
}

@media only screen and (max-width: 767px) {
	.advanced-banner-box {
		-ms-grid-columns: (1fr) [ 1 ];
		grid-template-columns: repeat(1, 1fr);
	}
}

.advanced-banner-box.shop-top-sidebar span.close {
	position: absolute;
	left: 25px;
	top: 18px;
	font-size: 18px;
	cursor: pointer;
}

.advanced-banner-box .product-filter {
	position: relative;
}

.advanced-banner-box .product-filter .rt-title {
	font-weight: 700;
	font-size: 24px;
	line-height: 29px;
	color: #000000;
	margin-bottom: 20px;
}

.advanced-banner-box .product-filter .brand-layout {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.advanced-banner-box .product-filter .brand-layout ul li {
	margin-bottom: 30px;
}

.advanced-banner-box .product-filter .brand-layout ul li:last-child {
	margin-bottom: 0;
}

.advanced-banner-box .product-filter .show-button {
	margin: 15px 5px 0px 0px;
}

.advanced-banner-box .product-filter .show-button .show-btn {
	font-size: 15px;
	line-height: 17px;
	color: var(--color-secondary);
	border: 1px solid #E9E9E9;
	padding: 6px 15px;
	display: inline-block;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.advanced-banner-box .product-filter .show-button .show-btn:hover {
	color: var(--color-white);
	background-color: var(--color-primary);
	border-color: var(--color-primary);
}

.advanced-banner-box .product-filter .show-button .show-btn:hover i {
	color: var(--color-white);
}

.advanced-banner-box .product-filter .show-button .show-btn i {
	font-size: 15px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	margin-left: 5px;
	color: var(--color-secondary);
}

.advanced-banner-box .rt-price-filter-wrap .noUi-target {
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	background-color: #f1f1f1;
	border: 0;
	height: 3px;
}

.advanced-banner-box .rt-price-filter-wrap .noUi-target .noUi-base .noUi-origin .noUi-handle {
	top: -6px;
	right: -1px;
	background: #00C9FF;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	width: 7px;
	height: 15px;
	border-radius: 0;
}

.advanced-banner-box .rt-price-filter-wrap .noUi-target .noUi-base .noUi-origin .noUi-handle::after {
	display: none;
}

.advanced-banner-box .rt-price-filter-wrap .noUi-target .noUi-base .noUi-origin .noUi-handle:before {
	display: none;
}

.advanced-banner-box .rt-price-filter-wrap .noUi-target .noUi-base .noUi-connect {
	background: #13B6E1;
	-webkit-box-shadow: none;
	box-shadow: none;
	border-radius: 4px;
}

.advanced-banner-box .rt-price-filter-wrap .price-range-select {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 7px;
	gap: 5px;
}

.advanced-banner-box .rt-price-filter-wrap .price-range-select .price-range {
	color: var(--color-secondary);
	font-weight: 500;
	font-size: 15px;
	line-height: 35px;
}

.advanced-banner-box .rt-price-filter-wrap .price-range-select .price-range.range-title {
	color: #9A9A9A;
}

.advanced-banner-box .product-btn-list {
	margin-top: 30px;
}

.advanced-banner-box .product-btn-list ul li {
	margin-bottom: 5px;
}

.advanced-banner-box .product-btn-list ul li:last-child {
	margin-bottom: 0;
}

.advanced-banner-box .product-btn-list ul li .product-btn {
	display: inline-block;
	background-color: var(--color-primary);
	font-family: var(--font-title);
	font-weight: 600;
	font-size: 18px;
	line-height: 22px;
	text-align: center;
	color: var(--color-white);
	border: 1px solid var(--color-primary);
	padding: 13px 20px;
	width: 160px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.advanced-banner-box .product-btn-list ul li .product-btn:focus {
	outline: 0;
	-webkit-box-shadow: 0;
	box-shadow: 0;
}

.advanced-banner-box .product-btn-list ul li .product-btn:hover {
	background-color: transparent;
	color: var(--color-secondary);
}

.form-check {
	padding-right: 0;
}

input[type=checkbox] + label {
	display: block;
	margin: 0;
	cursor: pointer;
	padding: 0.2em;
	font-weight: 400;
	font-size: 16px;
	line-height: 26px;
	color: #7E7E7E;
	margin: 0.2em;
}

input[type=checkbox] {
	display: none;
}

input[type=checkbox] + label:before {
	content: "✔";
	border: 1px solid #bababa;
	border-radius: 0;
	display: inline-block;
	width: 14px;
	height: 14px;
	padding-right: 0;
	padding-bottom: 0;
	margin-left: 10px;
	color: transparent;
	-webkit-transition: 0.2s;
	transition: 0.2s;
	line-height: 10px;
}

input[type=checkbox] + label:active:before {
	-webkit-transform: scale(0);
	transform: scale(0);
}

input[type=checkbox]:checked + label:before {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
	color: #fff;
}

/*------------------- Header -------------------*/
.rt-header {
	position: absolute;
	top: 0;
	z-index: 999;
	left: 0;
	right: 0;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.rt-header.style-6 {
	position: inherit;
}

.rt-header.style-10 {
	position: inherit;
}

.header-main.style-3 {
	padding: 20px 0;
}

.header-main.style-3.rt-sticky {
	background: #fff;
}

@media only screen and (max-width: 1199px) {
	.header-main.style-3 {
		padding: 40px;
	}
}

.header-main.style-4 {
	padding: 20px 100px;
	background-color: var(--color-secondary);
}

.header-main.style-4 .humburger span {
	background-color: #fff;
}

.header-main.style-5 {
	padding: 17px 0px;
	background-color: transparent;
	border-bottom: 1px solid rgb(255 255 255 / 25%);
	transition: all 0.3s;
}

.header-main.style-5.rt-sticky {
	background-color: #000;
	border-bottom: none;
}

.header-main.style-5.rt-sticky .header-action-items .inline-list .single-item a {
	color: #fff;
}

.header-main.style-5 .humburger {
	margin-right: 55px;
}

.header-main.style-5 .humburger span {
	background-color: #fff;
}

.header-main.style-6 {
	background-color: var(--color-secondary);
	height: 60px;
}

.header-main.style-7 {
	background-color: transparent;
	height: 60px;
}

.header-main.style-7 .header-menu-Wrapper .humburger {
	margin-right: 60px;
}

.header-main.style-9 {
	padding: 30px 0px;
	background-color: transparent;
}

.header-main.style-9 .humburger {
	margin-right: 55px;
}

.header-main.style-9 .humburger span {
	background-color: var(--color-secondary);
}

.rt-header.sticky-on.sticky {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 100;
	background-color: #000;
	-webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.rt-header.sticky .navbar-wrap {
	position: fixed;
	width: 100%;
	right: 0;
	top: 0;
	left: 0;
	margin: 0 auto;
	background-color: rgba(255, 255, 255, 0.98);
	-webkit-box-shadow: 0 7px 12px 0 rgba(0, 0, 0, 0.16);
	box-shadow: 0 7px 12px 0 rgba(0, 0, 0, 0.16);
	z-index: 99;
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
}

.rt-header.style-2.sticky .navbar-wrap {
	background-color: rgba(0, 0, 0, 0.9);
	-webkit-box-shadow: 0 7px 12px 0 rgba(255, 255, 255, 0.16);
	box-shadow: 0 7px 12px 0 rgba(0, 0, 0, 0.16);
}

.rt-header.style-3.sticky .navbar-wrap {
	-webkit-box-shadow: 0 5px 50px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 5px 50px 0 rgba(0, 0, 0, 0.1);
	padding: 40px;
}

.rt-header.style-4.sticky .navbar-wrap {
	background-color: rgba(0, 0, 0, 0.9);
	-webkit-box-shadow: 0 7px 12px 0 rgba(255, 255, 255, 0.16);
	box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.5);
}

.rt-header.style-5.sticky .navbar-wrap {
	background-color: #C39763;
	-webkit-box-shadow: 0 7px 12px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 7px 12px 0 rgba(0, 0, 0, 0.1);
	border-bottom: 0;
}

.rt-header.style-6.sticky .navbar-wrap {
	background-color: var(--color-secondary);
	-webkit-box-shadow: 0 7px 12px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 7px 12px 0 rgba(0, 0, 0, 0.1);
	border-bottom: 0;
}

.rt-header.style-7.sticky .navbar-wrap {
	background-color: var(--color-white);
	-webkit-box-shadow: 0 7px 12px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 7px 12px 0 rgba(0, 0, 0, 0.1);
	border-bottom: 0;
}

.rt-header.style-9.sticky .navbar-wrap {
	background-color: var(--color-white);
	-webkit-box-shadow: 0 7px 12px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 7px 12px 0 rgba(0, 0, 0, 0.1);
	border-bottom: 0;
}

/*------------------- topbar -------------------*/
.topbar-layout1 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	min-height: 55px;
	background-color: #f6f6f6;
	position: relative;
	transition: all 0.3s ease-in-out;
}

.topbar-layout1 .hd-top-1 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 30px;
}

@media (max-width: 480px) {
	.mobile-topbar.topbar-layout1 .hd-top-1 {
		flex-wrap: wrap;
		gap: 15px;
		justify-content: center;
	}
}

.topbar-layout1 .hd-top-1 .tp-description {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 5px;
}

.topbar-layout1 .hd-top-1 .tp-description .item-icon img {
	height: 20px;
	width: 20px;
}

.topbar-layout1 .hd-top-1 .tp-description .item-content .item-label {
	font-weight: 500;
	font-size: 15px;
	line-height: 18px;
	color: var(--color-secondary);
}

.topbar-layout1 .hd-top-1 .top-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.topbar-layout1 .hd-top-1 .top-menu ul li {
	display: inline-block;
}

.topbar-layout1 .hd-top-1 .top-menu ul li:last-child a {
	margin-left: 0;
}

.topbar-layout1 .hd-top-1 .top-menu ul li a {
	font-style: normal;
	font-weight: 500;
	font-size: 15px;
	line-height: 18px;
	color: var(--color-secondary);
	margin-left: 30px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.topbar-layout1 .hd-top-1 .top-menu ul li a:hover {
	color: var(--color-primary);
}

.topbar-layout1 .hd-description {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	gap: 40px;
	align-items: center;
}

@media (max-width: 480px) {
	.mobile-topbar.topbar-layout1 .hd-description {
		flex-wrap: wrap;
		gap: 10px;
		justify-content: center;
	}
}

.topbar-layout1 .hd-description .hd-top-2 {
	text-align: left;
}

.topbar-layout1 .hd-description .hd-top-2:hover .phone {
	color: var(--color-primary);
}

.topbar-layout1 .hd-description .hd-top-2:hover .phone .time {
	color: var(--color-secondary);
}

.topbar-layout1 .hd-description .hd-top-2 .phone {
	font-weight: 500;
	font-size: 15px;
	line-height: 18px;
	color: var(--color-secondary);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.topbar-layout1 .hd-description .hd-top-2 .phone .time {
	color: #8F8F8F;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	margin-right: 5px;
	font-weight: 400;
}

.topbar-layout1 .hd-description .hd-top-3 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
}

.topbar-layout1 .hd-description .hd-top-3 .dropdown {
	position: relative;
}

.topbar-layout1 .hd-description .hd-top-3 .dropdown:last-child:before {
	display: none;
}

.topbar-layout1 .hd-description .hd-top-3 .dropdown::before {
	content: "";
	height: 12px;
	width: 1px;
	position: absolute;
	top: 50%;
	left: -10px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	background-color: #8F8F8F;
}

.topbar-layout1 .hd-description .hd-top-3 .dropdown .btn {
	border: 0;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: var(--color-secondary);
	font-family: var(--font-title);
	font-weight: 600;
	font-size: 15px;
	line-height: 18px;
	background-color: transparent;
	border-radius: 0;
	padding-right: 10px;
}

.topbar-layout1 .hd-description .hd-top-3 .dropdown .btn:focus {
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.topbar-layout1 .hd-description .hd-top-3 .dropdown .btn::after {
	content: "\f107";
	font-family: Font Awesome\ 6 Free;
	font-weight: 600;
	font-size: 11px;
	border: none;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0px;
}

.topbar-layout1 .hd-description .hd-top-3 .dropdown .dropdown-menu {
	min-width: 10rem;
	padding: 10px 0;
	margin: 0;
	color: #212529;
	border: 0;
	border-radius: 0;
	background: #FFFFFF;
	-webkit-box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.15);
}

.topbar-layout1 .hd-description .hd-top-3 .dropdown .dropdown-menu li .dropdown-item {
	padding: 0.25rem 1rem;
	border: 0;
	font-family: var(--font-title);
	font-weight: 600;
	font-size: 15px;
	line-height: 30px;
	color: #000000;
}

.topbar-layout1 .hd-description .hd-top-3 .dropdown .dropdown-menu li .dropdown-item:hover {
	background-color: var(--color-secondary);
	color: var(--color-white);
}

.mobile-topbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding: 15px;
	text-align: center;
	position: relative;
	z-index: 2;
}

@media (max-width: 991px) {
	.mobile-topbar {
		gap: 10px;
		justify-content: center;
	}
}

.topbar-layout2 {
	background-color: var(--color-secondary);
	border-bottom: 1px solid #282828;
	min-height: 60px;
}

.topbar-layout2 .hd-top-1 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 30px;
}

.topbar-layout2 .hd-top-1 .tp-description .item-content .item-label {
	color: #E8E8E8;
}

.topbar-layout2 .header-logo {
	text-align: center;
}

.topbar-layout2 .hd-description {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	gap: 40px;
}

.topbar-layout2 .hd-description .top-menu ul {
	margin: 0;
	padding: 0;
}

.topbar-layout2 .hd-description .top-menu ul li {
	display: inline-block;
}

.topbar-layout2 .hd-description .top-menu ul li:last-child a {
	margin-left: 0;
}

.topbar-layout2 .hd-description .top-menu ul li a {
	font-weight: 500;
	font-size: 15px;
	line-height: 18px;
	color: #9F9F9F;
	margin-left: 30px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.topbar-layout2 .hd-description .top-menu ul li a:hover {
	color: var(--color-primary);
}

.topbar-layout2 .hd-description .hd-top-3 .dropdown {
	position: relative;
}

.topbar-layout2 .hd-description .hd-top-3 .dropdown:last-child:before {
	display: none;
}

.topbar-layout2 .hd-description .hd-top-3 .dropdown .btn {
	color: #9F9F9F;
}

.topbar-layout2 .hd-description .hd-top-3 .dropdown .btn:focus {
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.header-action-items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	vertical-align: middle;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: end;
}

.header-action-items .inline-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 25px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.header-action-items .inline-list .single-item a {
	color: var(--color-secondary);
	font-size: 20px;
	position: relative;
}

.transparent-header .header-action-items .inline-list .single-item a,
.header-main.style-4 .header-action-items .inline-list .single-item a,
.header.style-5 .header-action-items .inline-list .single-item a {
	color: #fff;
}

.rt-sticky .header-action-items .inline-list .single-item a {
	color: var(--color-secondary);
}

.header-action-items .inline-list .single-item.wish-icon .wishlist-icon-num,
.header-action-items .inline-list .single-item.cart-icon .item-count {
	background-color: var(--color-primary);
	color: #fff;
	position: absolute;
	border-radius: 50%;
	top: -10px;
	right: 14px;
	-webkit-box-shadow: 0 5px 5px rgb(17 17 17 / 30%);
	box-shadow: 0 5px 5px rgb(17 17 17 / 30%);
	font-size: 15px;
	line-height: 25px;
	height: 25px;
	width: 25px;
	text-align: center;
}

.header-action-items .inline-list .single-item.cart-icon .cart-amount {
	margin-right: 15px;
}

.humburger {
	position: relative;
	z-index: 4;
	cursor: pointer;
}

.humburger span {
	position: relative;
	display: block;
	width: 24px;
	height: 3px;
	background-color: var(--color-secondary);
	margin-bottom: 6px;
	transition: all 0.3s ease;
}

.header-main.style-3 .humburger:hover span {
	background-color: var(--color-primary);
}

.humburger span:last-child {
	margin-bottom: 0;
}

.header-main.style-3 .humburger,
.header-main.style-5 .humburger {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 65px;
	height: 65px;
	border-radius: 50%;
	border: 1px solid #d1d1d1;
	transition: all 0.3s ease;
}

.header-main.style-3 .humburger:hover {
	border-color: var(--color-primary);
}

.header-main.style-5 .humburger {
	border: 1px solid rgb(255 255 255 / 25%);
}

/*------------------- main-menu -------------------*/
.rt-main-menu .menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.rt-main-menu .menu .menu-item {
	position: relative;
}

.rt-main-menu .menu .menu-item > a {
	display: inline-block;
	font-size: 16px;
	color: var(--color-secondary);
	font-family: var(--font-title);
	font-weight: 600;
	position: relative;
	line-height: 19px;
	overflow: hidden;
}

.rt-main-menu .menu .menu-item > a:first-child::before {
	right: -50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.rt-main-menu .menu .menu-item > a:before {
	content: "";
	top: 70%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	position: absolute;
	background-color: var(--color-primary);
	border-radius: 45px;
	width: 0;
	height: 1px;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.rt-main-menu .menu .menu-item > a:hover:before {
	right: 0;
	width: 20px;
}

.rt-main-menu.style-2 .menu .menu-item > a:first-child::before {
	right: -50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.rt-main-menu.style-2 .menu .menu-item > a:before {
	background-color: var(--color-white);
}

.rt-main-menu.style-2 .menu .menu-item > a:hover:before {
	right: 0;
	width: 20px;
}

.rt-main-menu .menu .menu-item:hover.menu-item-has-children::after {
	border-color: var(--color-primary);
}

.rt-main-menu .menu .menu-item.menu-item-has-children.second-lavel:after {
	display: none;
}

.rt-main-menu .menu .menu-item.menu-item-has-children a .nav-label {
	font-size: 15px;
	color: #000;
	font-weight: 400;
	margin-right: 3px;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
}

.rt-main-menu .menu .menu-item.menu-item-has-children .sub-menu {
	position: absolute;
	right: 0;
	top: 100%;
	min-width: 255px;
	max-width: 255px;
	background-color: #fff;
	-webkit-box-shadow: 0 5px 12px rgba(0, 0, 0, 0.16);
	box-shadow: 0 5px 12px rgba(0, 0, 0, 0.16);
	border-top: none;
	border-radius: 0;
	border-bottom-right-radius: 6px;
	border-bottom-left-radius: 6px;
	padding-top: 20px;
	padding-bottom: 18px;
	-webkit-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: 100% 0 0;
	transform-origin: 100% 0 0;
	-webkit-transition: all 0.4s cubic-bezier(0.3, 0.02, 0, 0.6);
	transition: all 0.4s cubic-bezier(0.3, 0.02, 0, 0.6);
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	z-index: 9;
	margin: 0;
	padding-right: 0;
}

.rt-main-menu .menu .menu-item.menu-item-has-children .sub-menu .menu-item {
	padding: 0 25px;
	line-height: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 6px;
}

.rt-main-menu .menu .menu-item.menu-item-has-children .sub-menu .menu-item:last-child {
	margin-bottom: 0;
}

.rt-main-menu .menu .menu-item.menu-item-has-children .sub-menu .menu-item.menu-title {
	font-size: 1.0625rem;
	color: #000;
	font-weight: 700;
	margin-bottom: 10px;
}

.rt-main-menu .menu .menu-item.menu-item-has-children .sub-menu a {
	font-size: 15px;
	padding: 10px 0;
	color: #000;
	font-weight: 600;
	overflow: hidden;
	font-family: var(--font-title);
}

.rt-main-menu .menu .menu-item.menu-item-has-children .sub-menu a::before {
	content: "";
	position: absolute;
	right: -12px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	background-color: var(--color-primary);
	width: 7px;
	height: 2px;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
}

.rt-main-menu .menu .menu-item.menu-item-has-children .sub-menu a .nav-label {
	color: #000;
}

.rt-main-menu .menu .menu-item.menu-item-has-children .sub-menu a:hover {
	color: var(--color-primary);
	padding-right: 17px;
}

.rt-main-menu .menu .menu-item.menu-item-has-children .sub-menu a:hover::before {
	background-color: var(--color-primary);
	right: 0;
}

.rt-main-menu .menu .menu-item.menu-item-has-children .sub-menu a:hover .nav-label {
	color: var(--color-primary);
}

.rt-main-menu .menu .menu-item.menu-item-has-children.second-lavel > a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
}

.rt-main-menu .menu .menu-item.menu-item-has-children.second-lavel > .sub-menu {
	right: calc(100% + 1px);
	top: 0;
}

.rt-main-menu .menu .menu-item:last-child.menu-item-has-children .sub-menu > .menu-item.menu-item-has-children .sub-menu {
	right: -100%;
}

.rt-main-menu .menu .menu-item:hover > a {
	color: var(--color-primary);
}

.rt-main-menu .menu .menu-item:hover > a .nav-label {
	color: var(--color-primary);
}

.rt-main-menu .menu .menu-item:hover > .sub-menu {
	visibility: visible;
	opacity: 1;
	-webkit-transform: scaleY(1);
	transform: scaleY(1);
}

.rt-main-menu .menu > .menu-item {
	margin-left: 42px;
	line-height: 0;
}

.rt-main-menu .menu > .menu-item.active > a {
	color: var(--color-primary);
}

.rt-main-menu .menu > .menu-item.active > a > .nav-label {
	color: var(--color-primary);
}

.rt-main-menu .menu > .menu-item > a {
	padding: 45px 0;
}

.rt-main-menu .menu > .menu-item:last-child {
	margin-left: 0;
}

/*------------------- template-search -------------------*/
.template-search .template-search-inner {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	z-index: 1000;
	background: #fff;
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	-o-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
	webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	opacity: 0;
	box-shadow: 0 0 14px rgba(0, 0, 0, 0.08);
}

.template-search-tranparent-bg {
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: rgba(0, 0, 0, .5);
	z-index: 998;
	width: 100%;
	height: 100vh;
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	-o-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
	webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	opacity: 0;
}

.template-search .input-group input::-webkit-input-placeholder {
	color: #8B8B8B;
	font-size: 24px;
	font-weight: 500;
}

.template-search .input-group input::-moz-placeholder {
	color: #8B8B8B;
	font-size: 24px;
	font-weight: 500;
}

.template-search .input-group input:-moz-placeholder {
	color: #8B8B8B;
	font-size: 24px;
	font-weight: 500;
}

.template-search .input-group input:-ms-input-placeholder {
	color: #8B8B8B;
	font-size: 24px;
	font-weight: 500;
}

.template-search .close {
	position: absolute;
	top: 30px;
	left: 30px;
	margin: 0 auto;
	color: #292D32;
	border-radius: 4px;
	border: none;
	visibility: visible;
	padding: 0;
	font-size: 30px;
	font-weight: 300;
	cursor: pointer;
	background: transparent;
	transition: all 300ms;
	z-index: 1;
	line-height: 30px;
	height: 40px;
	width: 40px;
	border: 1px solid #ECECEC;
	border-radius: 50%;
}

.admin-bar .template-search .close {
	top: 62px;
}

@media (max-width: 767px) {
	.template-search .close {
		top: 15px;
		left: 15px;
	}
}

.template-search .close:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	outline: none;
}

.template-search .close:hover {
	color: var(--color-primary);
}

.template-search.open {
	opacity: 1;
	visibility: visible;
	z-index: 999;
}

.template-search.open .template-search-inner,
.template-search.open .template-search-tranparent-bg {
	opacity: 1;
}

.template-search.open .template-search-inner {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-o-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	transition-delay: 0.3s;
}

.template-search.open .template-search-tranparent-bg {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-o-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}

.template-search .product-search {
	max-width: 910px;
	margin: auto;
	padding: 130px 15px 40px;
}

.swiper .preloader {
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  background: #fff;
  z-index: 10;
}

.slider-preloader,
.template-search .product-search .product-autoaomplete-spinner {
	opacity: 0;
	width: 30px;
	height: 30px;
	margin-right: -15px;
	margin-top: -15px;
	border-top: 1px solid #efefef;
	border-bottom: 1px solid #333;
	border-right: 1px solid #efefef;
	border-left: 1px solid #333;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	-webkit-animation: spin .5s linear infinite;
	-moz-animation: spin .5s linear infinite;
	-o-animation: spin .5s linear infinite;
	-ms-animation: spin .5s linear infinite;
	animation: spin .5s linear infinite;
	text-align: center;
	margin: 25px auto 0;
}

.swiper .preloader .slider-preloader {
  opacity: 1;
  position: absolute;
  top: 50%;
  right: 50%;
  margin-top: -15px;
  margin-right: -15px;
}

.template-search .product-search .input-group .form-control {
	height: 58px;
	font-size: 24px;
	font-weight: 500;
	color: #8B8B8B;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	border-bottom: 1px solid #9A9A9A;
	padding: 0;
	margin-right: 0 !important;
}

.template-search .product-search .rtin-btn-search {
	line-height: 1;
	font-size: 20px;
	padding: 0;
	z-index: 9;
	color: var(--color-secondary);
	margin-right: -20px !important;
}

.product-search .input-group .btn-group .rtin-btn-cat {
	background-color: #fff;
	font-size: 16px;
	padding: 15px 60px 15px 88px;
	color: var(--color-secondary);
	position: relative;
}

@media all and (max-width: 575px) {
	.product-search .input-group .btn-group .rtin-btn-cat {
		font-size: 15px;
		padding: 15px 20px 15px 33px;
	}
}

.product-search .input-group .btn-group .rtin-btn-cat:before {
	content: "";
	position: absolute;
	height: 50%;
	width: 1px;
	background-color: #ddd;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 0;
}

.product-search .input-group .btn-group .rtin-btn-cat:after {
	position: absolute;
	left: 60px;
	top: 50%;
	margin-right: 0;
}

@media (max-width: 575px) {
	.product-search .input-group .btn-group .rtin-btn-cat:after {
		left: 20px;
	}
}

.template-search .product-search .input-group .btn-group .rtin-btn-search {
	padding: 0 18px;
	height: 58px;
	background-color: var(--color-primary);
	color: #fff;
	-webkit-transition: all .3s ease-out;
	transition: all .3s ease-out;
	border: none;
	position: relative;
	z-index: 2;
	border-radius: 0;
}

.template-search .product-search .input-group .btn-group .rtin-btn-search .icon-search {
	font-size: 24px;
}

.product-search .product-autoaomplete-spinner {
	text-align: center;
	display: block;
	margin-top: 50px;
}

.product-search .result {
	margin-top: 10px;
}

.product-search .result .result-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-right: -12px;
	margin-left: -12px;
	overflow: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	max-height: 50vh;
	scrollbar-width: thin;
}

.auto-search-result {
	max-width: 25%;
	flex: 0 0 25%;
	padding-right: 12px;
	padding-left: 12px;
}

@media (max-width: 767px) {
	.auto-search-result {
		max-width: 50%;
		flex: 0 0 50%;
		margin-bottom: 24px;
	}
}

.auto-search-result .thumb {
	background-color: #f6f6f6;
}

.auto-search-result .title {
	margin-bottom: 0;
}

.auto-search-result .title a {
	font-size: 16px;
	line-height: 1.4;
	font-weight: 400;
	color: var(--color-secondary);
	transition: all ease 0.5s;
}

.auto-search-result .title a:hover {
	color: var(--color-primary);
}

.auto-search-result .price {
	font-size: 15px;
}

.result-wrap .item-button {
	margin-top: 30px;
	max-width: 100%;
	flex: 0 0 100%;
	text-align: center;
}

.product-search .result ul {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}

.product-search .result ul li h3.title {
	font-size: 24px;
	font-weight: 500;
	color: #8B8B8B;
}

/*------------------- Off canvas menu -------------------*/
.offcanvas-menu-wrap {
	max-width: 700px;
	width: 100%;
	position: fixed;
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
	top: 0;
	right: 0;
	background-color: #fff;
	z-index: 9999;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	overflow-y: scroll;
	-ms-overflow-style: none;
}

@media (max-width: 1199px) {
	.offcanvas-menu-wrap {
		display: none;
	}
}

.offcanvas-menu-wrap::-webkit-scrollbar {
	display: none;
}

@media (max-width: 575px) {
	.offcanvas-menu-wrap {
		max-width: 320px;
	}
}

.offcanvas-menu-wrap[data-position=right] {
	right: auto;
	left: 0;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
}

[data-theme=dark] .offcanvas-menu-wrap {
	background-color: red;
}

.offcanvas-menu-wrap .offcanvas-content {
	height: 100vh;
	padding: 100px;
	-webkit-transition: all ease 0.8s;
	transition: all ease 0.8s;
}

.offcanvas-menu-wrap .offcanvas-content.offcanvas-content-style-2 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 35px 40px;
}

.offcanvas-menu-wrap .offcanvas-content .offcanvas-header {
	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;
	padding: 0;
	padding-right: 40px;
	margin-bottom: 50px;
}

.offcanvas-menu-wrap .offcanvas-content .offcanvas-header .close-btn {
	font-size: 1.25rem;
	font-weight: 500;
	color: var(--color-secondary);
	cursor: pointer;
}

.offcanvas-menu-wrap .offcanvas-content .offcanvas-header .close-btn a {
	color: var(--color-secondary);
	font-weight: 400;
	font-size: 15px;
	line-height: 20px;
	color: #000000;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.offcanvas-menu-wrap .offcanvas-content .offcanvas-header .close-btn a i {
	font-size: 16px;
	color: #000000;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.offcanvas-menu-wrap .offcanvas-content .offcanvas-header .close-btn a:hover,
.offcanvas-menu-wrap .offcanvas-content .offcanvas-header .close-btn a:hover i {
	color: var(--color-primary);
}

.offcanvas-menu-wrap .offcanvas-content .offcanvas-widget .offcanvas-menu li .menu {
	font-weight: 400;
	font-size: 30px;
	line-height: 60px;
	color: #000000;
}

.offcanvas-menu-wrap .offcanvas-content .offcanvas-footer {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 35px;
	padding-right: 40px;
	position: fixed;
	bottom: 70px;
}

.offcanvas-menu-wrap .offcanvas-content .offcanvas-footer .rt-contact-box a {
	font-weight: 600;
	font-size: 15px;
	line-height: 18px;
	color: var(--color-secondary);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.offcanvas-menu-wrap .offcanvas-content .offcanvas-footer .rt-contact-box a:hover {
	color: #8F8F8F;
}

.offcanvas-menu-wrap .offcanvas-content .offcanvas-footer .rt-contact-box a:hover .time {
	color: var(--color-secondary);
}

.offcanvas-menu-wrap .offcanvas-content .offcanvas-footer .rt-contact-box a .time {
	color: #8F8F8F;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.offcanvas-menu-wrap .offcanvas-content .offcanvas-footer .offcanvas-filter {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 8px;
}

.offcanvas-menu-wrap .offcanvas-content .offcanvas-footer .offcanvas-filter .dropdown {
	position: relative;
}

.offcanvas-menu-wrap .offcanvas-content .offcanvas-footer .offcanvas-filter .dropdown:last-child:before {
	display: none;
}

.offcanvas-menu-wrap .offcanvas-content .offcanvas-footer .offcanvas-filter .dropdown::before {
	content: "";
	height: 12px;
	width: 1px;
	position: absolute;
	top: 50%;
	left: -11px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	background-color: #c4c4c4;
}

.offcanvas-menu-wrap .offcanvas-content .offcanvas-footer .offcanvas-filter .dropdown .btn {
	border: 0;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: var(--color-secondary);
	font-family: var(--font-title);
	font-weight: 700;
	font-size: 15px;
	line-height: 18px;
	background-color: transparent;
	border-radius: 0;
}

.offcanvas-menu-wrap .offcanvas-content .offcanvas-footer .offcanvas-filter .dropdown .btn:focus {
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.offcanvas-menu-wrap .offcanvas-content .offcanvas-footer .offcanvas-filter .dropdown .btn::after {
	content: "\f107";
	font-family: Font Awesome\ 6 Free;
	font-weight: 600;
	font-size: 11px;
	border: none;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0px;
}

.offcanvas-menu-wrap .offcanvas-content .offcanvas-footer .offcanvas-filter .dropdown .dropdown-menu {
	min-width: 10rem;
	padding: 10px 0;
	margin: 0;
	color: #212529;
	border: 0;
	border-radius: 0;
	background: #FFFFFF;
	-webkit-box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.15);
}

.offcanvas-menu-wrap .offcanvas-content .offcanvas-footer .offcanvas-filter .dropdown .dropdown-menu li .dropdown-item {
	padding: 0.25rem 1rem;
	border: 0;
	font-family: var(--font-title);
	font-weight: 600;
	font-size: 15px;
	line-height: 30px;
	color: #000000;
}

.offcanvas-menu-wrap .offcanvas-content .offcanvas-footer .offcanvas-filter .dropdown .dropdown-menu li .dropdown-item:hover {
	background-color: var(--color-secondary);
	color: var(--color-white);
}

[data-theme=dark] .offcanvas-menu-wrap .offcanvas-content .offcanvas-header .close-btn {
	color: var(--color-secondary);
}

[data-theme=dark] .offcanvas-menu-wrap .offcanvas-content .offcanvas-widget p {
	color: #d7d7d7;
}

.offcanvas-menu-wrap .offcanvas-content .offcanvas-widget {
	max-height: calc(100% - 140px);
	overflow-y: auto;
}

.offcanvas-menu-wrap .offcanvas-content .nav-sidebar-menu {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin: 0;
	padding: 0;
}

.offcanvas-menu-wrap .offcanvas-content .nav-sidebar-menu > .menu-item > a {
	position: relative;
	padding: 15px 0;
	margin: 0 40px;
	color: var(--color-secondary);
	font-size: 30px;
	font-weight: 400;
	font-family: var(--font-title);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.offcanvas-menu-wrap .offcanvas-content .nav-sidebar-menu > .menu-item > a:before {
	content: "";
	position: absolute;
	bottom: 8px;
	right: 100%;
	height: 1px;
	width: 0;
	background-color: var(--color-secondary);
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.offcanvas-menu-wrap .offcanvas-content .nav-sidebar-menu > .menu-item > a:hover:before {
	visibility: visible;
	opacity: 1;
	width: 100%;
	-webkit-transition: width 0.4s ease;
	transition: width 0.4s ease;
	right: 0%;
}

.offcanvas-menu-wrap .offcanvas-content .nav-sidebar-menu > .menu-item.current-menu-ancestor > a:before {
	visibility: visible;
	opacity: 1;
	width: 100%;
	right: 0;
}

.offcanvas-menu-wrap .offcanvas-content .nav-sidebar-menu > .menu-item > a:hover {
	color: var(--color-secondary);
}

.offcanvas-menu-wrap .offcanvas-content .nav-sidebar-menu > .menu-item > a span {
	font-size: 15px;
	color: #9ea8b5;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.offcanvas-menu-wrap .offcanvas-content .nav-sidebar-menu > .menu-item .sub-menu {
	display: none;
	padding: 10px 0;
	margin: 0;
	list-style: none;
}

.offcanvas-menu-wrap .offcanvas-content .nav-sidebar-menu > .menu-item .sub-menu > .menu-item a {
	font-size: 16px;
	color: var(--color-secondary);
	padding: 8px 0;
	margin: 0 60px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	position: relative;
	display: inline-block;
	cursor: pointer;
}

.offcanvas-menu-wrap .offcanvas-content .nav-sidebar-menu > .menu-item .sub-menu > .menu-item a:hover {
	color: var(--color-secondary);
}

.offcanvas-menu-wrap .offcanvas-content .nav-sidebar-menu > .menu-item .sub-menu > .menu-item a:before {
	content: "";
	height: 1px;
	width: 0;
	background-color: var(--color-secondary);
	position: absolute;
	bottom: 0;
	right: 100%;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.offcanvas-menu-wrap .offcanvas-content .nav-sidebar-menu > .menu-item .sub-menu > .menu-item a:hover:before {
	visibility: visible;
	opacity: 1;
	width: 100%;
	right: 0%;
	-webkit-transition: width 0.4s ease;
	transition: width 0.4s ease;
}

.offcanvas-menu-wrap .offcanvas-content .nav-sidebar-menu > .menu-item .sub-menu > .menu-item.current-menu-item a:before {
	visibility: visible;
	opacity: 1;
	width: 100%;
	right: 0;
}

.offcanvas-menu-wrap .offcanvas-content .nav-sidebar-menu > .menu-item .sub-menu > .menu-item a i {
	margin-left: 10px;
}

div#wrapper.open > .offcanvas-mask {
	content: "";
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.7);
	z-index: 150;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

/*------------------- rt mobile menu -------------------*/
.offscreen-navigation .menu {
	font-family: var(--font-title);
}

.offscreen-navigation ul li {
	position: relative;
}

.offscreen-navigation ul li span {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 40px;
	z-index: 9;
	cursor: pointer;
}

.offscreen-navigation .menu > li {
	border-bottom: 1px solid #e9e9e9;
}

.offscreen-navigation .menu > li:last-child {
	border-bottom: 0;
}

.offscreen-navigation .menu > li > a {
	background-color: #f3f3f3;
	font-size: 16px;
	padding: 12px 30px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.offcanvas-content-style-2 .offscreen-navigation .menu > li > a {
	background-color: transparent;
	padding: 12px 0;
}

.offscreen-navigation .menu > li > a:hover {
	background-color: #f8f8f8;
}

.offscreen-navigation .menu > li > a.opened {
	background-color: #f8f8f8;
}

.offscreen-navigation .sub-menu {
	display: none;
	background-color: #ffffff;
}

.offscreen-navigation .sub-menu li.menu-item-has-children > a::after,
.offscreen-navigation .sub-menu li.menu-item-has-children > a::before {
	left: 40px;
}

.offscreen-navigation .sub-menu li.menu-item-has-children span {
	left: 25px;
}

.offscreen-navigation .sub-menu li a {
	border-top: 1px solid #f1f1f1;
	padding: 7px 40px;
	font-size: 15px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.offcanvas-content-style-2 .offscreen-navigation .sub-menu li a {
	padding-right: 30px;
}

.offscreen-navigation .sub-menu li a:hover {
	background-color: rgba(15, 91, 245, 0.05);
}

.offscreen-navigation .sub-menu li .sub-menu li a {
	padding: 7px 50px;
}

.offscreen-navigation ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.offscreen-navigation ul li > a {
	display: block;
	position: relative;
	color: #000000;
	font-weight: 500;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.offscreen-navigation ul li > a:hover {
	color: var(--color-primary);
}

.offscreen-navigation ul li.menu-item-has-children > a:after {
	color: #999999;
	content: "\f067";
	display: inline-block;
	font-family: "Font Awesome 5 Free";
	font-weight: 700;
	left: 20px;
	position: absolute;
	font-size: 14px;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.offscreen-navigation ul li.menu-item-has-children > a:before {
	color: #999999;
	content: "\f068";
	display: inline-block;
	font-family: "Font Awesome 5 Free";
	font-weight: 700;
	left: 20px;
	position: absolute;
	font-size: 14px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.offscreen-navigation ul li.menu-item-has-children > a.opened:after {
	opacity: 0;
	visibility: hidden;
}

.offscreen-navigation ul li.menu-item-has-children > a.opened:before {
	opacity: 1;
	visibility: visible;
}

.rt-slide-nav {
	position: absolute;
	background: #fff;
	width: 100%;
	right: 0;
	display: none;
	max-height: calc(100vh - 100px);
	overflow-y: auto;
	-webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
	top: 100%;
	z-index: 99;
}

.rt-mobile-menu {
	padding: 12px 15px;
	border-bottom: 1px solid rgba(81, 81, 81, 0.15);
	z-index: 999;
	background: #fff;
}

@media (min-width: 992px) {
	.rt-mobile-menu {
		display: none;
	}
}

.rt-mobile-menn-bar {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	position: relative;
}

body .sidebarBtn {
	display: block;
	padding: 12px 0;
	cursor: pointer;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

body .sidebarBtn .bar {
	background: #000000;
	height: 2px;
	width: 30px;
	display: block;
	margin-bottom: 5px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

body .sidebarBtn .bar:nth-child(2),
body .sidebarBtn .bar:nth-child(3) {
	width: 25px;
	margin-right: 5px;
}

body .sidebarBtn .bar:last-child {
	margin-bottom: 0;
}

body.slidemenuon .sidebarBtn .bar:nth-child(2),
body.slidemenuon .sidebarBtn .bar:nth-child(3) {
	opacity: 0;
}

body.slidemenuon .sidebarBtn .bar:nth-child(1) {
	-webkit-transform: rotate(-45deg) translate(-7px, 7px);
	transform: rotate(-45deg) translate(-7px, 7px);
}

body.slidemenuon .sidebarBtn .bar:nth-child(4) {
	-webkit-transform: rotate(45deg) translate(-8px, -8px);
	transform: rotate(45deg) translate(-8px, -8px);
}

header.header {
	position: relative;
	z-index: 15;
}

.relative-content {
	position: relative;
}

@media only screen and (max-width: 1199px) {
	header.header {
		display: none;
	}
}

.header-menu {
	position: relative;
	top: 0;
	right: 0;
	left: 0;
	margin: auto;
	z-index: 100;
}

.header-menu.menu-layout3 {
	background-color: var(--color-secondary);
}

.header-menu:after {
	clear: both;
	content: "";
	display: block;
}

.header-menu nav.template-main-menu > ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.header-menu nav.template-main-menu.style-3 > ul {
	justify-content: start;
}

.header-menu nav.template-main-menu > ul > li > a {
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.header__transition.menu-hover nav.template-main-menu > ul > li.menu-item {
	opacity: 0.6;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.header__transition.menu-hover nav.template-main-menu > ul > li.menu-item.active {
	opacity: 1;
}

.header__transition.menu-hover nav.template-main-menu > ul > li.menu-item.active > a {
	color: var(--color-secondary);
}

.header__transition.style-6.menu-hover nav.template-main-menu > ul > li.menu-item.active > a,
.transparent-header .header__transition.menu-hover nav.template-main-menu > ul > li.menu-item.active > a {
	color: #fff;
}

.transparent-header .header__transition.rt-sticky.menu-hover nav.template-main-menu > ul > li.menu-item.active > a {
	color: var(--color-secondary);
}

.logo-area .logo-light {
	display: none;
}

.transparent-header .logo-area .logo-light {
	display: table-cell;
}

.transparent-header .logo-area .logo-dark {
	display: none;
}

.rt-sticky .logo-area .logo-dark {
	display: table-cell;
}

.rt-sticky .logo-area .logo-light {
	display: none;
}

.header.style-2 .logo-light,
.header-main.style-3 .logo-light {
	display: none;
}

.header-main.style-5 .logo-dark {
	display: none;
}

.header-center-logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 0px 10px;
}

.header-menu nav.template-main-menu > ul > li > a:hover {
	color: var(--color-primary);
}

nav.template-main-menu > ul > li {
	position: relative;
}

nav.template-main-menu > ul > li > a {
	font-family: var(--font-title);
	font-weight: 600;
	font-size: 16px;
	line-height: 1;
	color: var(--color-secondary);
	position: relative;
}

nav.template-main-menu > ul > li.current-menu-ancestor > a:before {
	width: 20px;
	right: 50%;
	-webkit-transform: translateX(50%);
	transform: translateX(50%);
}

.transparent-header nav.template-main-menu > ul > li > a {
	color: #fff;
}

.rt-sticky nav.template-main-menu > ul > li > a {
	color: var(--color-secondary);
}

nav.template-main-menu > ul > li > a:before {
	content: "";
	height: 1px;
	width: 0px;
	background-color: var(--color-secondary);;
	position: absolute;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	top: 70%;
	right: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	transition: all 0.3s ease-in-out;
}

.transparent-header nav.template-main-menu > ul > li > a:before {
	background-color: #fff;
}

nav.template-main-menu > ul > li > a:hover:before {
	width: 20px;
	right: 50%;
	-webkit-transform: translateX(50%);
	transform: translateX(50%);
}

nav.template-main-menu.style-2 > ul > li > a {
	color: var(--color-white);
	position: relative;
}

nav.template-main-menu.style-3 > ul > li > a {
	color: var(--color-white);
	position: relative;
}

nav.template-main-menu.style-4 > ul > li > a {
	color: var(--color-white);
	position: relative;
}

nav.template-main-menu {
	position: relative;
}

nav.template-main-menu .menu-item.menu-item-has-children .sub-menu {
	background-color: #ffffff;
	width: 255px;
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: 100%;
	right: 0;
	-webkit-transform: translateY(15px);
	transform: translateY(15px);
	-webkit-box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	padding: 30px 0 20px 0;
	list-style: none;
	margin: 0;
}

nav.template-main-menu .menu-item.menu-item-has-children.mega-menu .sub-menu .sub-menu {
	position: relative;
	opacity: 0;
	visibility: hidden;
	top: 0;
	right: 0;
	padding: 0;
	margin: 0;
	background: none;
	transform: none;
	box-shadow: none;
}

nav.template-main-menu .menu-item.menu-item-has-children.mega-menu:hover .sub-menu .sub-menu {
	opacity: 1;
	visibility: visible;
}

nav.template-main-menu > ul > li ul.sub-menu li {
	position: relative;
	line-height: 35px;
	padding: 0 25px;
}

nav.template-main-menu > ul > li ul.sub-menu li a:last-child {
	margin-bottom: 0;
}

nav.template-main-menu > ul > li ul.sub-menu li a {
	position: relative;
	font-size: 15px;
	font-weight: 400;
	display: inline-block;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
	line-height: 35px;
	color: #000000;
	position: relative;
	-webkit-transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.88);
	transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.88);
	margin-bottom: 8px;
}

nav.template-main-menu > ul > li ul.sub-menu li a::before {
	content: "";
	position: absolute;
	bottom: 8px;
	right: 100%;
	height: 1px;
	width: 0;
	background-color: var(--color-secondary);
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

nav.template-main-menu > ul > li ul.sub-menu li a:hover::before {
	visibility: visible;
	opacity: 1;
	width: 100%;
	-webkit-transition: width 0.4s ease;
	transition: width 0.4s ease;
	right: 0%;
}

nav.template-main-menu > ul > li ul.sub-menu li a:hover {
	color: var(--color-secondary);
}

@media only screen and (max-width: 1199px) {
	nav.template-main-menu > ul > li ul.sub-menu li a {
		padding: 10px 15px;
	}
}

@media only screen and (max-width: 1199px) {
	nav.template-main-menu > ul > li ul.sub-menu li:after {
		right: 15px;
		left: 15px;
	}
}

nav.template-main-menu > ul > li ul.sub-menu li:last-child:after {
	border-bottom: none;
}

nav.template-main-menu > ul > li .template-mega-menu {
	background-color: #ffffff;
	position: absolute;
	width: 100%;
	right: 0;
	left: 0;
	z-index: 10;
	opacity: 0;
	visibility: hidden;
	top: 100%;
	padding: 40px 0px 10px 0px;
	-webkit-transform: translateY(15px);
	transform: translateY(15px);
	-webkit-box-shadow: 0 3px 20px rgba(0, 0, 0, 0.05);
	box-shadow: 0 3px 20px rgba(0, 0, 0, 0.05);
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	overflow: hidden;
}

nav.template-main-menu > ul > li .template-mega-menu.style-2 {
	padding: 40px 0px 20px;
}

nav.template-main-menu > ul > li .template-mega-menu .menu-ctg-title {
	font-family: var(--font-title);
	font-weight: 600;
	font-size: 15px;
	line-height: 35px;
	margin-bottom: 15px;
	color: var(--color-secondary);
}

nav.template-main-menu > ul > li .template-mega-menu ul.sub-menu li {
	line-height: 35px;
}

nav.template-main-menu > ul > li .template-mega-menu ul.sub-menu .shape-img {
	position: relative;
	z-index: 1;
	bottom: -20px;
}

nav.template-main-menu > ul > li .template-mega-menu ul.sub-menu .shape-img img {
	max-width: initial;
}

nav.template-main-menu > ul > li .template-mega-menu ul.sub-menu .shape-img .round-shape {
	position: absolute;
	bottom: 0;
	right: 50%;
	-webkit-transform: translateX(50%);
	transform: translateX(50%);
	z-index: -1;
}

nav.template-main-menu > ul > li .template-mega-menu ul.sub-menu li:last-child {
	border-bottom: 0;
	margin-bottom: 0;
	padding-bottom: 0;
}

nav.template-main-menu > ul > li .template-mega-menu ul.sub-menu li a {
	font-size: 15px;
	color: var(--color-secondary);
	display: inline-block;
	-webkit-transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.88);
	transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.88);
	position: relative;
	font-weight: 500;
	line-height: 35px;
	font-family: var(--font-title);
	margin-bottom: 5px;
}

nav.template-main-menu > ul > li .template-mega-menu ul.sub-menu li a::before {
	content: "";
	height: 1px;
	width: 0;
	background-color: var(--color-primary);
	position: absolute;
	right: 100%;
	bottom: 8px;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

nav.template-main-menu > ul > li .template-mega-menu ul.sub-menu li a:hover::before {
	visibility: visible;
	opacity: 1;
	width: 100%;
	-webkit-transition: width 0.4s ease;
	transition: width 0.4s ease;
	right: 0%;
}

nav.template-main-menu > ul > li .template-mega-menu ul.sub-menu li a:hover {
	color: var(--color-primary);
}

nav.template-main-menu > ul > li:hover .template-mega-menu {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translatey(0);
	transform: translatey(0);
}

nav.template-main-menu .menu-item:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translatey(0);
	transform: translatey(0);
}

nav.template-main-menu .menu-item.menu-item-has-children .sub-menu .menu-item.menu-item-has-children > .sub-menu {
	left: 100%;
	right: inherit;
	top: 0;
}

nav.template-main-menu .mega-menu.menu-item.menu-item-has-children .sub-menu .menu-item.menu-item-has-children > .sub-menu {
	right: 0;
	left: auto;
	top: 0;
}

.header-menu.menu-layout1 nav.template-main-menu > ul > li > a {
	padding: 40px 25px;
}

.header-menu.menu-layout1 .menu-right nav.template-main-menu > ul > li:last-child > a {
	padding-left: 0;
}

.header-menu.menu-layout2 nav.template-main-menu > ul > li > a {
	padding: 40px 25px;
}

.header-menu.menu-layout3 nav.template-main-menu > ul > li > a {
	padding: 40px 25px;
}

.header-menu.menu-layout3 nav.template-main-menu > ul > li:first-child > a {
	padding-right: 0;
}

.header-menu.menu-layout4 nav.template-main-menu > ul > li > a {
	padding: 40px 25px;
}

@media only screen and (max-width: 1199px) {
	.header-menu.menu-layout1 nav.template-main-menu > ul > li > a {
		padding: 40px 15px;
	}
}

.rt-sticky {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 100;
	right: 0;
	left: 0;
	background-color: #ffffff;
}

.rt-sticky nav.template-main-menu > ul > li > a {
	padding: 40px 25px;
}

@media only screen and (max-width: 1199px) {
	.rt-sticky nav.template-main-menu > ul > li > a {
		padding: 28px 15px;
	}
}

.header-menu.menu-layout1.rt-sticky {
	-webkit-box-shadow: 0px 5px 50px 0px rgba(0, 0, 0, 0.05);
	box-shadow: 0px 5px 50px 0px rgba(0, 0, 0, 0.05);
	background-color: #fff;
}

.header-menu.menu-layout2.rt-sticky {
	-webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
	background-color: var(--color-secondary);
}

.header-menu.menu-layout4.rt-sticky {
	-webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
	background-color: var(--color-secondary);
}

/*------------------- Mega Menu -------------------*/
nav.template-main-menu ul li.mega-menu {
	position: static !important;
}

nav.template-main-menu ul li.mega-menu:hover ul {
	opacity: 1;
	visibility: visible;
}

nav.template-main-menu ul li.mega-menu ul.sub-menu li {
	background-color: inherit;
	padding: 0;
}

nav.template-main-menu ul li.mega-menu ul.sub-menu li:last-child {
	border-bottom: none;
}

nav.template-main-menu ul li.mega-menu > ul.sub-menu {
	background-color: #ffffff;
	width: calc(100% - 24px);
	max-width: 1276px;
	position: absolute;
	right: 0;
	left: 0;
	margin: auto;
	padding: 35px 50px;
	display: flex;
	justify-content: space-around;
}

nav.template-main-menu ul li.mega-menu.menu-two-column,
nav.template-main-menu ul li.mega-menu.menu-three-column {
	position: relative;
}

nav.template-main-menu ul li.mega-menu.menu-two-column > ul.sub-menu {
	width: 550px;
}

nav.template-main-menu ul li.mega-menu.menu-three-column > ul.sub-menu {
	width: 790px;
	padding: 20px 12px;
}

nav.template-main-menu ul li.mega-menu > ul.sub-menu > li {
	display: inline-block;
	border: none;
	flex-basis: 30%;
	max-width: 30%;
}

nav.template-main-menu ul li.mega-menu > ul.sub-menu > li ul {
	top: 0;
	position: relative;
	width: inherit;
	right: inherit;
	box-shadow: none;
	border-top: none;
	transform: none;
	padding: 0;
}

nav.template-main-menu ul li.mega-menu > ul.sub-menu li:after {
	content: '';
}

nav.template-main-menu ul li.mega-menu > ul.sub-menu li:before {
	color: #2962ff;
	font-size: 15px;
	padding-left: 13px;
}

nav.template-main-menu ul li.mega-menu > ul.sub-menu > li > a {
	font-size: 16px;
}

nav.template-main-menu ul li.mega-menu > ul.sub-menu > li > a {
	font-weight: 700;
}

nav.template-main-menu ul li.mega-menu.hide-header > ul.sub-menu > li > a {
	display: none;
}

nav.template-main-menu ul.menu li.mega-menu ul.sub-menu li:after,
nav.template-main-menu ul.menu li.mega-menu ul.sub-menu li.menu-item-has-children:before {
	display: none;
}

.admin-bar .header-menu.menu-layout1.rt-sticky,
.admin-bar .header-main.style-3.rt-sticky,
.admin-bar .header-main.style-4.rt-sticky,
.admin-bar .header-main.style-5.rt-sticky,
.admin-bar .header-menu.style-6.rt-sticky,
.admin-bar.header-style-6 .sidebar-main.sidebar-menu-one {
	margin-top: 32px;
}

.menu-col {
	-webkit-transform: translateY(60px);
	transform: translateY(60px);
	opacity: 0;
}

.row .menu-col:nth-child(1) {
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	-webkit-transition: opacity 0.64s cubic-bezier(0.163, 0.85, 0.44, 1) 0.14s, -webkit-transform 0.64s cubic-bezier(0.163, 0.85, 0.44, 1) 0.076s;
	transition: opacity 0.64s cubic-bezier(0.163, 0.85, 0.44, 1) 0.14s, -webkit-transform 0.64s cubic-bezier(0.163, 0.85, 0.44, 1) 0.076s;
	transition: transform 0.64s cubic-bezier(0.163, 0.85, 0.44, 1) 0.076s, opacity 0.64s cubic-bezier(0.163, 0.85, 0.44, 1) 0.14s;
	transition: transform 0.64s cubic-bezier(0.163, 0.85, 0.44, 1) 0.076s, opacity 0.64s cubic-bezier(0.163, 0.85, 0.44, 1) 0.14s, -webkit-transform 0.64s cubic-bezier(0.163, 0.85, 0.44, 1) 0.076s;
}

.row .menu-col:nth-child(2) {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
	-webkit-transition: opacity 0.64s cubic-bezier(0.163, 0.85, 0.44, 1) 0.26s, -webkit-transform 0.64s cubic-bezier(0.163, 0.85, 0.44, 1) 0.194s;
	transition: opacity 0.64s cubic-bezier(0.163, 0.85, 0.44, 1) 0.26s, -webkit-transform 0.64s cubic-bezier(0.163, 0.85, 0.44, 1) 0.194s;
	transition: transform 0.64s cubic-bezier(0.163, 0.85, 0.44, 1) 0.194s, opacity 0.64s cubic-bezier(0.163, 0.85, 0.44, 1) 0.26s;
	transition: transform 0.64s cubic-bezier(0.163, 0.85, 0.44, 1) 0.194s, opacity 0.64s cubic-bezier(0.163, 0.85, 0.44, 1) 0.26s, -webkit-transform 0.64s cubic-bezier(0.163, 0.85, 0.44, 1) 0.194s;
}

.row .menu-col:nth-child(3) {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
	-webkit-transition: opacity 0.64s cubic-bezier(0.163, 0.85, 0.44, 1) 0.32s, -webkit-transform 0.64s cubic-bezier(0.163, 0.85, 0.44, 1) 0.254s;
	transition: opacity 0.64s cubic-bezier(0.163, 0.85, 0.44, 1) 0.32s, -webkit-transform 0.64s cubic-bezier(0.163, 0.85, 0.44, 1) 0.254s;
	transition: transform 0.64s cubic-bezier(0.163, 0.85, 0.44, 1) 0.254s, opacity 0.64s cubic-bezier(0.163, 0.85, 0.44, 1) 0.32s;
	transition: transform 0.64s cubic-bezier(0.163, 0.85, 0.44, 1) 0.254s, opacity 0.64s cubic-bezier(0.163, 0.85, 0.44, 1) 0.32s, -webkit-transform 0.64s cubic-bezier(0.163, 0.85, 0.44, 1) 0.254s;
}

.row .menu-col:nth-child(4) {
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
	-webkit-transition: opacity 0.64s cubic-bezier(0.163, 0.85, 0.44, 1) 0.38s, -webkit-transform 0.64s cubic-bezier(0.163, 0.85, 0.44, 1) 0.313s;
	transition: opacity 0.64s cubic-bezier(0.163, 0.85, 0.44, 1) 0.38s, -webkit-transform 0.64s cubic-bezier(0.163, 0.85, 0.44, 1) 0.313s;
	transition: transform 0.64s cubic-bezier(0.163, 0.85, 0.44, 1) 0.313s, opacity 0.64s cubic-bezier(0.163, 0.85, 0.44, 1) 0.38s;
	transition: transform 0.64s cubic-bezier(0.163, 0.85, 0.44, 1) 0.313s, opacity 0.64s cubic-bezier(0.163, 0.85, 0.44, 1) 0.38s, -webkit-transform 0.64s cubic-bezier(0.163, 0.85, 0.44, 1) 0.313s;
}

nav.template-main-menu > ul > li:hover .template-mega-menu .menu-col {
	-webkit-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}

/*------------------- Hero Banner -------------------*/
.hero-banner-wrap-1 {
	position: relative;
	width: 100%;
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	min-height: 900px;
}

@media (max-width: 1440px) {
	.hero-banner-wrap-1 {
		min-height: auto;
	}
}

.hero-banner-wrap-1 .hero-banner {
	width: 100%;
	height: 900px;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

@media only screen and (max-width: 1440px) {
	.hero-banner-wrap-1 .hero-banner {
		height: 100%;
		background-position: top;
	}
}

@media only screen and (max-width: 1199px) {
	.hero-banner-wrap-1 .hero-banner {
		background-position: 100% 0;
	}
}

.hero-banner-wrap-1 .hero-banner.style-2 {
	background-size: auto;
}

.hero-banner-wrap-1 .pagination-area-1 {
	position: absolute;
	top: 50%;
	left: 100px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 1;
}

@media only screen and (max-width: 575px) {
	.hero-banner-wrap-1 .pagination-area-1 {
		opacity: 0;
	}
}

.hero-banner-wrap-1 .pagination-area-1 .rt-slider-pagination .swiper-pagination-bullet {
	width: 40px;
	height: 3px;
	background: #9B9B9B;
	border-radius: 0px;
	display: block;
	margin-bottom: 20px;
	margin-right: auto;
	opacity: 1;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.hero-banner-wrap-1 .pagination-area-1 .rt-slider-pagination .swiper-pagination-bullet-active {
	display: block;
	position: relative;
	width: 50px;
}

.hero-banner-wrap-1 .pagination-area-1 .rt-slider-pagination .swiper-pagination-bullet-active::after {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	background: var(--color-secondary);
	-webkit-animation: progress 7s ease-in-out;
	animation: progress 7s ease-in-out;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

@media only screen and (max-width: 1199px) {
	.hero-banner-wrap-1 .hero-banner.style-3 {
		background-position: top;
	}
}

.pagination-area-2 {
	position: absolute;
	bottom: -200px;
	right: 50%;
	transform: translateX(50%) !important;
	z-index: 1;
}

@media only screen and (max-width: 575px) {
	.pagination-area-2 {
		opacity: 0;
	}
}

.pagination-area-2 .rt-slider-pagination .swiper-pagination-bullet {
	width: 2px;
	height: 25px;
	background: #c7c7c7;
	border-radius: 0px;
	display: inline-block;
	margin-left: 14px;
	margin-right: auto;
	opacity: 1;
	margin-left: 15px !important;
}

.pagination-area-2 .rt-slider-pagination .swiper-pagination-bullet:last-child {
	margin-left: 0 !important;
}

.pagination-area-2 .rt-slider-pagination .swiper-pagination-bullet-active {
	width: 2px;
	height: 31px;
	background: #fff;
}

.hero__style__1 {
	position: relative;
	z-index: 1;
}

.hero-banner-wrap-1:hover .item-social .social .single-item {
	-webkit-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}

.hero-banner-wrap-1 .item-social {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 100px;
	z-index: 1;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	z-index: 2;
}

@media only screen and (max-width: 1440px) {
	.hero-banner-wrap-1 .item-social {
		display: none;
	}
}

.hero-banner-wrap-1 .item-social .social .single-item {
	display: block;
	opacity: 1;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 1440px) {
	.hero-banner-wrap-1 .item-social .social .single-item {
		display: inline-block;
	}
}

.hero-banner-wrap-1 .item-social .social .single-item:nth-child(1) {
	-webkit-transition-delay: 0.4s;
	transition-delay: 0.4s;
}

.hero-banner-wrap-1 .item-social .social .single-item:nth-child(2) {
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
}

.hero-banner-wrap-1 .item-social .social .single-item:nth-child(3) {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

.hero-banner-wrap-1 .item-social .social .single-item:nth-child(4) {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

.hero-banner-wrap-1 .item-social .social .single-item:last-child a {
	margin-bottom: 0;
}

.hero-banner-wrap-1 .item-social .social .single-item a {
	width: 45px;
	height: 45px;
	background: transparent;
	border: 1px solid #bebebe;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 50%;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	position: relative;
	z-index: 1;
	overflow: hidden;
	margin-bottom: 15px;
}

.hero-banner-wrap-1 .item-social .social .single-item a:hover {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
}

.hero-banner-wrap-1 .item-social .social .single-item a:hover i {
	-webkit-animation: toBottomFromTop 0.5s forwards;
	animation: toBottomFromTop 0.5s forwards;
	color: var(--color-white);
}

.hero-banner-wrap-1 .item-social .social .single-item a i {
	font-size: 15px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	color: var(--color-secondary);
}

.hero-banner-wrap-1 .item-social .social .fb-bg a:hover {
	background-color: #2e78d3;
	border-color: #2e78d3;
}

.hero-banner-wrap-1 .item-social .social .twit-bg a:hover {
	background-color: #37b7f9;
	border-color: #37b7f9;
}

.hero-banner-wrap-1 .item-social .social .link-bg a:hover {
	background-color: #2e78d3;
	border-color: #2e78d3;
}

.hero-banner-wrap-1 .item-social .social .pinterest-bg a:hover {
	background-color: #ff1244;
	border-color: #ff1244;
}

.hero-banner-layout-1 {
	position: relative;
	z-index: 1;
	margin-top: 310px;
}

@media( min-width: 1200px){
	.content-left-spacing {
		padding-right: 100px;
	}
}

@media only screen and (min-width: 1921px) {
	.hero-banner-wrap-1 .hero-banner {
		height: 1050px;
	}

	.hero-banner-wrap-1 {
		min-height: 1050px;
	}

	.hero-banner-layout-1 {
		margin-top: 380px;
	}
}

@media only screen and (max-width: 1440px) {
	.hero-banner-layout-1 {
		margin: 300px 0px 200px;
	}
}

@media only screen and (max-width: 1024px) {
	.hero-banner-layout-1 {
		margin: 250px 0px;
	}
}

@media only screen and (max-width: 991px) {
	.hero-banner-layout-1 {
		margin: 200px 0px;
	}
}

@media only screen and (max-width: 479px) {
	.hero-banner-layout-1 {
		margin: 150px 0px;
	}
}

.hero-banner-layout-1 .item-tag {
	font-family: var(--font-title);
	margin-bottom: 10px;
	font-weight: 600;
	font-size: 20px;
	line-height: 24px;
	letter-spacing: 0.25em;
	color: #262626;
}

.hero-banner-layout-1 .item-tag.style-2 a {
	background-color: #F6FFF5;
}

.hero-banner-layout-1 .heading-title {
	font-weight: 700;
	font-size: 80px;
	line-height: 95px;
	margin-bottom: 30px;
	overflow: hidden;
	font-family: 'Urbanist', sans-serif;
	color: var(--color-secondary);
}

@media only screen and (max-width: 1199px) {
	.hero-banner-layout-1 .heading-title {
		font-size: 65px;
		line-height: 80px;
	}
}

@media only screen and (max-width: 991px) {
	.hero-banner-layout-1 .heading-title {
		font-size: 60px;
		line-height: 75px;
	}
}

@media only screen and (max-width: 767px) {
	.hero-banner-layout-1 .heading-title {
		font-size: 56px;
	}
}

@media only screen and (max-width: 480px) {
	.hero-banner-layout-1 .heading-title {
		font-size: 42px;
		line-height: 60px;
	}
}

.hero-banner-layout-1.style-2 {
	text-align: center;
}

.hero-banner-layout-1.style-2 .item-tag {
	letter-spacing: 0.3em;
	color: var(--color-white);
}

.hero-banner-layout-1.style-2 .heading-title {
	color: var(--color-white);
	font-size: 60px;
	line-height: 80px;
}

@media only screen and (max-width: 767px) {
	.hero-banner-layout-1.style-2 .heading-title {
		font-size: 48px;
		line-height: 60px;
	}
}

@media only screen and (max-width: 479px) {
	.hero-banner-layout-1.style-2 .heading-title {
		font-size: 42px;
		line-height: 46px;
	}
}

.hero-banner-layout-1.style-3 {
	text-align: center;
	position: relative;
	z-index: 1;
}

.hero-banner-layout-1.style-3 {
	margin: 300px 0px 180px 0px;
}

@media only screen and (max-width: 767px) {
	.hero-banner-layout-1.style-3 {
		margin: 200px 0px;
	}
}

@media only screen and (max-width: 479px) {
	.hero-banner-layout-1.style-3 {
		margin: 270px 0px 150px;
	}
}

.hero-banner-layout-1.style-3 .item-tag {
	margin-bottom: 25px;
	color: var(--color-white);
	background-color: var(--color-primary);
	font-weight: 600;
	font-size: 15px;
	line-height: 18px;
	text-align: center;
	letter-spacing: 0.1em;
	display: inline-block;
	border-radius: 4px;
	padding: 7px 20px;
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}

.hero-banner-layout-1.style-3 .heading-title {
	color: var(--color-secondary);
	font-size: 75px;
	line-height: 85px;
}

@media only screen and (max-width: 1199px) {
	.hero-banner-layout-1.style-3 .heading-title {
		font-size: 60px;
		line-height: 70px;
	}
}

@media only screen and (max-width: 991px) {
	.hero-banner-layout-1.style-3 .heading-title {
		font-size: 50px;
		line-height: 60px;
	}
}

.hero-banner-layout-1.style-3 .banner-button .banner-btn {
	color: var(--color-secondary);
	font-family: var(--font-title);
	font-weight: 700;
	font-size: 15px;
	line-height: 22px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	display: inline-block;
	position: relative;
}

.hero-banner-layout-1.style-3 .banner-button .banner-btn:before {
	content: "";
	height: 1px;
	width: 0;
	background-color: var(--color-primary);
	position: absolute;
	bottom: -2px;
	right: 100%;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.hero-banner-layout-1.style-3 .banner-button .banner-btn:hover {
	color: var(--color-primary);
}

.hero-banner-layout-1.style-3 .banner-button .banner-btn:hover:before {
	visibility: visible;
	opacity: 1;
	-webkit-transition: width 0.4s ease;
	transition: width 0.4s ease;
	width: 100%;
	right: 0%;
}

.hero-banner-layout-1.style-3 .round-shape-1 {
	position: absolute;
	right: 0;
	top: -110px;
	z-index: -1;
}

@media only screen and (max-width: 767px) {
	.hero-banner-layout-1.style-3 .round-shape-1 img {
		height: 100%;
		max-width: inherit;
	}
}

@media only screen and (max-width: 1199px) {
	.hero-banner-layout-1.style-3 .round-shape-1 img {
		display: none;
	}
}

@media only screen and (max-width: 991px) {
	.hero-banner-layout-1.style-3 .round-shape-1 {
		right: 50px;
	}
}

@media only screen and (max-width: 767px) {
	.hero-banner-layout-1.style-3 .round-shape-1 {
		right: 50%;
		top: 50%;
		-webkit-transform: translateY(-50%) translateX(50%);
		transform: translateY(-50%) translateX(50%);
	}
}

.swiper[class*=hero-slider] .swiper-slide [class*=hero-banner-layout] {
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.swiper[class*=hero-slider] .swiper-slide:not(.swiper-slide-active) [class*=hero-banner-layout] {
	opacity: 0;
}

.rtFadeInUp {
	-webkit-animation-name: rtFadeInUp;
	animation-name: rtFadeInUp;
}

@-webkit-keyframes rtFadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 50px, 0);
		transform: translate3d(0, 50px, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

@keyframes rtFadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 50px, 0);
		transform: translate3d(0, 50px, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

@-webkit-keyframes rtFadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(50%, 0, 0);
		transform: translate3d(50%, 0, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

@keyframes rtFadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(50%, 0, 0);
		transform: translate3d(50%, 0, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

.hero-slider-1 .swiper-slide,
.hero-slider-2 .swiper-slide {
	position: relative;
	overflow: hidden;
}

.hero-slider-1 .swiper-slide .img-container,
.hero-slider-2 .swiper-slide .img-container {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	margin: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

@media (max-width: 1199px) {
	.hero-slider-1 .swiper-slide .img-container,
	.hero-slider-2 .swiper-slide .img-container {
		transform: none !important;
	}
}

@-webkit-keyframes rtFadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 50px, 0);
		transform: translate3d(0, 50px, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

@keyframes rtFadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 50px, 0);
		transform: translate3d(0, 50px, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

@-webkit-keyframes rtFadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(50%, 0, 0);
		transform: translate3d(50%, 0, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

@keyframes rtFadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(50%, 0, 0);
		transform: translate3d(50%, 0, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

@-webkit-keyframes rtFadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-50%, 0, 0);
		transform: translate3d(-50%, 0, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

@keyframes rtFadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-50%, 0, 0);
		transform: translate3d(-50%, 0, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

.hero-banner-wrap-2 {
	position: relative;
	width: 100%;
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	min-height: 100vh;
}

.hero-banner-wrap-2 .hero-banner {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1;
	background-size: cover;
	background-repeat: no-repeat;
}

.hero-banner-wrap-2 .navigation-area-2 .swiper-button-next,
.hero-banner-wrap-2 .navigation-area-2 .swiper-button-prev, 
.hero-banner-wrap-1.rt_hero .navigation-area-2 .swiper-button-next, 
.hero-banner-wrap-1.rt_hero .navigation-area-2 .swiper-button-prev {
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
}

@media only screen and (max-width: 575px) {
	.hero-banner-wrap-2 .navigation-area-2 .swiper-button-next,
	.hero-banner-wrap-2 .navigation-area-2 .swiper-button-prev 
	.hero-banner-wrap-1.rt_hero .navigation-area-2 .swiper-button-next, 
	.hero-banner-wrap-1.rt_hero .navigation-area-2 .swiper-button-prev {
		visibility: hidden;
	}
}

.hero-banner-wrap-2 .navigation-area-2 .swiper-button-next:hover i,
.hero-banner-wrap-2 .navigation-area-2 .swiper-button-prev:hover i, 
.hero-banner-wrap-1.rt_hero .navigation-area-2 .swiper-button-next:hover i, 
.hero-banner-wrap-1.rt_hero .navigation-area-2 .swiper-button-prev:hover i {
	color: var(--color-primary);
	-webkit-animation: toRightFromLeft 0.5s forwards;
	animation: toRightFromLeft 0.5s forwards;
}

.hero-banner-wrap-2 .navigation-area-2 .swiper-button-next i, 
.hero-banner-wrap-2 .navigation-area-2 .swiper-button-prev i,
.hero-banner-wrap-1.rt_hero .navigation-area-2 .swiper-button-next i,
.hero-banner-wrap-1.rt_hero .navigation-area-2 .swiper-button-prev i {
	color: #f4f4f4;
	font-size: 30px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.hero-banner-wrap-2 .navigation-area-2 .swiper-button-next::after, 
.hero-banner-wrap-2 .navigation-area-2 .swiper-button-prev::after,
.hero-banner-wrap-1.rt_hero .navigation-area-2 .swiper-button-next::after,
.hero-banner-wrap-1.rt_hero .navigation-area-2 .swiper-button-prev::after {
	display: none;
}

.hero-banner-wrap-2 .navigation-area-2 .swiper-button-next,
.hero-banner-wrap-1.rt_hero .navigation-area-2 .swiper-button-next {
	left: 100px;
}

@media only screen and (max-width: 1199px) {
	.hero-banner-wrap-2 .navigation-area-2 .swiper-button-next,
	.hero-banner-wrap-1.rt_hero .navigation-area-2 .swiper-button-next {
		left: 0;
	}
}

.hero-banner-wrap-2 .navigation-area-2 .swiper-button-prev,
.hero-banner-wrap-1.rt_hero .navigation-area-2 .swiper-button-prev {
	right: 100px;
}

@media only screen and (max-width: 1199px) {
	.hero-banner-wrap-2 .navigation-area-2 .swiper-button-prev,
	.hero-banner-wrap-1.rt_hero .navigation-area-2 .swiper-button-prev {
		right: 0;
	}
}

.hero-banner-layout-2 {
	position: relative;
	z-index: 1;
	padding: 250px 0px;
}

@media only screen and (max-width: 575px) {
	.hero-banner-layout-2 {
		padding: 100px 0px;
	}
}

.hero-banner-layout-2 .subtitle {
	font-family: var(--font-title);
	font-weight: 600;
	font-size: 20px;
	line-height: 24px;
	letter-spacing: 0.1em;
	color: var(--color-white);
}

.hero-banner-layout-2 .title {
	font-weight: 600;
	font-size: 70px;
	line-height: 84px;
	color: var(--color-white);
	margin-bottom: 13px;
	display: block;
}

@media only screen and (max-width: 1199px) {
	.hero-banner-layout-2 .title {
		font-size: 65px;
		line-height: 80px;
		margin-bottom: 0;
	}
}

@media only screen and (max-width: 991px) {
	.hero-banner-layout-2 .title {
		font-size: 60px;
		line-height: 75px;
	}
}

.hero-banner-layout-1 p,
.hero-banner-layout-2 p {
	font-size: 18px;
	line-height: 30px;
	margin-bottom: 30px;
	font-weight: 400;
	color: var(--color-white);
}

@media only screen and (max-width: 1199px) {
	.hero-banner-layout-1 p,
	.hero-banner-layout-2 p {
		margin-bottom: 0px;
	}
}

.hero-banner-layout-1 .start-wrap,
.hero-banner-layout-2 .start-wrap {
	margin-bottom: 40px;
}

@media only screen and (max-width: 1199px) {
	.hero-banner-layout-1 .start-wrap,
	.hero-banner-layout-2 .start-wrap {
		margin-bottom: 20px;
	}
}

.hero-banner-layout-1 .start-wrap .start,
.hero-banner-layout-2 .start-wrap .start {
	font-size: 15px;
	line-height: 30px;
	color: var(--color-white);
}

.hero-banner-layout-1 .start-wrap .price,
.hero-banner-layout-2 .start-wrap .price {
	font-family: var(--font-title);
	font-weight: 700;
	font-size: 32px;
	line-height: 31px;
	color: var(--color-white);
}

.hero-banner-layout-2 .item-button .btn {
	border: 1px solid #fff;
	color: var(--color-white);
	background-color: transparent;
}

.hero-banner-layout-2 .item-button .btn:hover {
	color: var(--color-primary);
}

.hero-banner-layout-2 .item-button .btn::after {
	background-color: #fff;
}

.hero-banner-wrap-3 {
	position: relative;
	width: 100%;
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	min-height: 100vh;
}

@media only screen and (max-width: 1199px) {
	.hero-banner-wrap-3 {
		display: block;
	}
}

.hero-banner-wrap-3 .hero-banner {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1;
	background-size: cover;
	background-repeat: no-repeat;
}

.hero-banner-wrap-3 .rt-hero-slider-9 {
	position: relative;
}

@media screen and (min-width: 1200px) {
	.hero-banner-wrap-3 .rt-hero-slider-9 {
		height: 100vh;
		width: 100%;
	}
}

.hero-banner-wrap-3 .rt-hero-slider-9 .swiper {
	position: static;
	width: 100%;
	height: 100%;
	margin-right: auto;
	margin-left: auto;
}

.hero-banner-wrap-3 .rt-hero-slider-9 .swiper-pagination {
	position: absolute;
	bottom: 42%;
	right: 70px;
}

@media only screen and (max-width: 575px) {
	.hero-banner-wrap-3 .rt-hero-slider-9 .swiper-pagination {
		visibility: hidden;
	}
}

.hero-banner-wrap-3 .rt-hero-slider-9 .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: #CFCFCF;
	display: block;
	border-radius: 50%;
	opacity: 1;
	z-index: 10;
	margin-bottom: 20px;
}

.hero-banner-wrap-3 .rt-hero-slider-9 .swiper-pagination .swiper-pagination-bullet:last-child {
	margin-bottom: 0;
}

.hero-banner-wrap-3 .rt-hero-slider-9 .swiper-pagination .swiper-pagination-bullet-active {
	width: 12px;
	height: 12px;
	background: #7C7C7C;
}

.hero-banner-layout-3 {
	position: relative;
	z-index: 1;
	padding: 350px 100px 0px 0px;
}

@media only screen and (max-width: 1199px) {
	.hero-banner-layout-3 {
		padding: 200px;
	}
}

@media only screen and (max-width: 767px) {
	.hero-banner-layout-3 {
		padding: 120px 0px;
	}
}

.hero-banner-layout-3 .subtitle {
	font-family: var(--font-title);
	font-weight: 400;
	font-size: 30px;
	line-height: 38px;
	color: #6A6A6A;
}

@media only screen and (max-width: 767px) {
	.hero-banner-layout-3 .subtitle {
		font-size: 24px;
		line-height: 32px;
	}
}

@media only screen and (max-width: 479px) {
	.hero-banner-layout-3 .subtitle {
		font-size: 20px;
		line-height: 28px;
	}
}

.hero-banner-layout-3 .title {
	font-weight: 600;
	font-size: 69px;
	line-height: 84px;
	color: var(--color-secondary);
	margin-bottom: 25px;
}

@media only screen and (max-width: 1199px) {
	.hero-banner-layout-3 .title {
		color: var(--color-primary);
	}
}

@media only screen and (max-width: 767px) {
	.hero-banner-layout-3 .title {
		font-size: 50px;
		line-height: 65px;
	}
}

@media only screen and (max-width: 479px) {
	.hero-banner-layout-3 .title {
		font-size: 40px;
		line-height: 55px;
	}
}

.hero-banner-layout-3 .start-wrap {
	margin-bottom: 45px;
}

.hero-banner-layout-3 .start-wrap .price {
	font-family: var(--font-title);
	font-weight: 600;
	font-size: 50px;
	line-height: 60px;
	color: var(--color-secondary);
}

@media only screen and (max-width: 767px) {
	.hero-banner-layout-3 .start-wrap .price {
		font-size: 40px;
		line-height: 50px;
	}
}

@media only screen and (max-width: 479px) {
	.hero-banner-layout-3 .start-wrap .price {
		font-size: 30px;
		line-height: 40px;
	}
}

.hero-banner-layout-3 .item-button .btn {
	border: 1px solid var(--color-primary);
	color: var(--color-white);
	background-color: var(--color-primary);
	height: auto;
	padding: 12px 30px 11px;
}

.hero-banner-layout-3 .item-button .btn:hover {
	color: var(--color-secondary);
	border-color: var(--color-white);
}

.hero-banner-layout-3 .item-button .btn::after {
	background-color: var(--color-white);
}

.hero-banner-wrap-4 {
	margin-top: 0;
	position: relative;
	overflow: hidden;
}

.hero-banner-wrap-4 .hero-banner.style-2 {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1;
	background-size: auto;
	background-repeat: no-repeat;
	background-position: left bottom;
	-webkit-animation: anim-overflow 2s;
	animation: anim-overflow 2s;
	-webkit-animation-name: rtFadeInRight;
	animation-name: rtFadeInRight;
}

@media screen and (max-width: 1440px) {
	.hero-banner-wrap-4 .hero-banner.style-2 {
		height: 100%;
	}
}

@media screen and (max-width: 991px) {
	.hero-banner-wrap-4 .hero-banner.style-2 {
		background-size: cover;
		background-position: left top;
	}
}

/*------------------- Banner -------------------*/
.banner-wrap-1 {
	background-repeat: no-repeat;
	background-size: cover;
	padding: 150px 0px 155px 0px;
}

@media only screen and (max-width: 767px) {
	.banner-wrap-1 {
		padding: 80px 0;
	}
}

.banner-box-1 .section-heading {
	height: auto;
	width: auto;
	text-align: right;
	margin-bottom: 0;
}

.banner-box-1 .section-heading p {
	font-family: var(--font-title);
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0.2em;
	color: var(--color-secondary);
}

.banner-box-1 .section-heading .heading-title {
	margin-bottom: 35px;
	font-size: 50px;
	line-height: 65px;
}

@media only screen and (max-width: 767px) {
	.banner-box-1 .section-heading .heading-title {
		font-size: 40px;
		line-height: 55px;
		margin-bottom: 24px;
	}
}

@media only screen and (max-width: 479px) {
	.banner-box-1 .section-heading .heading-title {
		font-size: 35px;
		line-height: 50px;
	}
}

.banner-wrap-2 {
	background-repeat: no-repeat;
	background-size: cover;
	padding: 100px 0px;
	position: relative;
	min-height: 540px;
}

@media only screen and (max-width: 991px) {
	.banner-wrap-2 {
		min-height: auto;
	}
}

.banner-wrap-2::after {
	content: "";
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.4);
	position: absolute;
	top: 0;
	right: 0;
}

.banner-box-2 {
	z-index: 1;
	position: relative;
}

.banner-box-2 .item-content {
	text-align: center;
	margin-bottom: 60px;
}

@media screen and (min-width: 1200px) {
	.banner-box-2 .item-content {
		width: 432px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media only screen and (max-width: 1199px) {
	.banner-box-2 .item-content {
		margin-bottom: 40px;
	}
}

.banner-box-2 .item-content p {
	font-family: var(--font-title);
	font-weight: 500;
	font-size: 18px;
	line-height: 22px;
	letter-spacing: 0.15em;
	color: var(--color-white);
}

@media only screen and (max-width: 767px) {
	.banner-box-2 .item-content p {
		font-size: 16px;
		font-weight: 400;
		line-height: 20px;
		letter-spacing: 0.1em;
	}
}

.banner-box-2 .item-content .title {
	font-size: 40px;
	line-height: 50px;
	color: var(--color-white);
	font-weight: 500;
}

@media only screen and (max-width: 767px) {
	.banner-box-2 .item-content .title {
		font-size: 30px;
		line-height: 40px;
	}
}

@media only screen and (max-width: 479px) {
	.banner-box-2 .item-content .title {
		font-size: 24px;
		line-height: 34px;
	}
}

.banner-box-2 .item-button {
	text-align: center;
	margin-top: 65px;
}

@media only screen and (max-width: 767px) {
	.banner-box-2 .item-button {
		margin-top: 50px;
	}
}

@media only screen and (max-width: 320px) {
	.banner-box-2 .item-button {
		margin-top: 0px;
	}
}

.banner-box-2 .item-button .btn {
	border: 1px solid #fff;
	color: var(--color-white);
	background-color: transparent;
}

.banner-box-2 .item-button .btn:after {
	background-color: #fff;
}

.banner-box-2 .item-button .btn:hover {
	color: var(--color-primary);
}

/*------------------- Cl Banner -------------------*/
.cl-banner-wrap-1 {
	padding: 20px 0px;
}

.cl-banner-box-1 .item-img {
	position: relative;
}

@media (max-width: 575px) {
	.cl-banner-box-1 .item-img {
		height: 350px;
	}
}

.cl-banner-box-1 .item-img img {
	height: 100%;
	object-fit: cover;
}

.cl-banner-box-1 .item-img .item-content {
	position: absolute;
	bottom: 120px;
	right: 90px;
}

@media only screen and (max-width: 767px) {
	.cl-banner-box-1 .item-img .item-content {
		right: 30px;
		bottom: 50%;
		-webkit-transform: translateY(50%);
		transform: translateY(50%);
	}
}

.cl-banner-box-1 .item-img .item-content p {
	font-weight: 600;
	font-size: 16px;
	line-height: 21px;
	letter-spacing: 3.2px;
	color: var(--color-secondary);
	margin-bottom: 12px;
}

@media only screen and (max-width: 479px) {
	.cl-banner-box-1 .item-img .item-content p {
		margin-bottom: 5px;
	}
}

.cl-banner-box-1 .item-img .item-content .heading-title {
	font-size: 40px;
	line-height: 46px;
	margin-bottom: 15px;
	font-weight: 600;
	font-family: 'Urbanist', sans-serif;
	color: var(--color-secondary);
}

@media only screen and (min-width: 1200px) {
	.cl-banner-box-1 .item-img .item-content .heading-title {
		width: 250px;
	}
}

@media only screen and (max-width: 767px) {
	.cl-banner-box-1 .item-img .item-content .heading-title {
		font-size: 30px;
		line-height: 36px;
	}
}

@media only screen and (max-width: 479px) {
	.cl-banner-box-1 .item-img .item-content .heading-title {
		font-size: 24px;
		line-height: 30px;
		margin-bottom: 5px;
	}
}

.cl-banner-box-1 .item-img .item-content .price-wrap {
	margin-bottom: 35px;
}

@media only screen and (max-width: 479px) {
	.cl-banner-box-1 .item-img .item-content .price-wrap {
		margin-bottom: 15px;
	}
}

.cl-banner-box-1 .item-img .item-content .price-wrap .price {
	font-weight: 700;
	font-size: 24px;
	line-height: 24px;
	color: var(--color-secondary);
}

.cl-banner-box-1 .item-img .item-content .price-wrap .price .old-price {
	font-weight: 500;
	font-size: 18px;
	line-height: 18px;
	margin-right: 12px;
	-webkit-text-decoration-line: line-through;
	text-decoration-line: line-through;
}

.cl-banner-box-1 .item-img .item-content .item-button .btn {
	background-color: #F66737;
	color: var(--color-white);
}

.cl-banner-box-1 .item-img .item-content .item-button .style-5 {
	background-color: #D09F3F;
	border: 0;
}

.cl-banner-box-1 .item-img .item-content .item-button .style-6 {
	background: #3FD08B;
	border: 0;
}

.about-wrap-1 .section-heading {
	height: auto;
	width: auto;
}

@media screen and (min-width: 1200px) {
	.about-wrap-1 .section-heading p {
		width: 815px;
		margin-left: auto;
		margin-right: auto;
	}
}

.about-box-1 .content-box-1 {
	padding: 40px;
	background: #F8FBFF;
}

.about-box-1 .content-box-1 .title {
	font-weight: 600;
	font-size: 22px;
	line-height: 24px;
}

.about-box-1 .content-box-1 p {
	margin-bottom: 0;
}

.about-box-1 .style-2 {
	background: #FFF7F9;
}

.about-box-1 .style-3 {
	background: #F9F9F9;
}

@media only screen and (max-width: 767px) {
	.about-box-1.style-1 {
		margin-bottom: 24px;
	}
}

@media only screen and (max-width: 1199px) {
	.about-box-2 {
		height: 100%;
	}
}

.about-box-2:hover .item-img img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.about-box-2 .item-img {
	overflow: hidden;
}

@media only screen and (max-width: 1199px) {
	.about-box-2 .item-img {
		height: 100%;
	}
}

.about-box-2 .item-img a {
	width: 100%;
	display: block;
}

@media only screen and (max-width: 1199px) {
	.about-box-2 .item-img a {
		height: 100%;
	}
}

.about-box-2 .item-img img {
	width: 100%;
	-webkit-transition: all 1s;
	transition: all 1s;
}

@media only screen and (max-width: 1199px) {
	.about-box-2 .item-img img {
		height: 100%;
		-o-object-fit: cover;
		object-fit: cover;
	}
}

@media only screen and (max-width: 991px) {
	.about-box-2.style-2 {
		padding-bottom: 24px;
	}
}

@media only screen and (min-width: 1200px) {
	.about-box-3{
		margin-right: -75px;
	}
}

.about-box-3 .item-img img{
	width: 100%;
    -webkit-transition: all 1s;
    transition: all 1s;
}

.home8-banner:hover .item-img img,
.about-box-3:hover .item-img img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.video-wrap-1 .play-wrapper {
	position: relative;
}

.video-wrap-1 .play-wrapper .item-img {
	position: relative;
}

.video-wrap-1 .play-wrapper .item-img img {
	width: 100%;
}

.video-wrap-1 .play-wrapper .item-img .play-area {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 20%;
}

@media only screen and (max-width: 767px) {
	.video-wrap-1 .play-wrapper .item-img .play-area {
		right: 50%;
		-webkit-transform: translateX(50%) translateY(-50%);
		transform: translateX(50%) translateY(-50%);
	}
}

.video-wrap-1 .play-wrapper .item-img .play-area .play-btn.style-2 {
	-webkit-box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 767px) {
	.video-wrap-1 .play-wrapper .item-img .play-area .play-btn.style-2 {
		height: 80px;
		width: 80px;
	}
}

@media only screen and (max-width: 767px) {
	.video-wrap-1 .play-wrapper .item-img .play-area .play-btn.style-2 .play-icon-2 {
		font-size: 24px;
	}
}

.video-wrap-1 .play-wrapper .item-img .play-area .play-btn.style-2:hover {
	background-color: var(--color-primary);
	-webkit-box-shadow: none;
	box-shadow: none;
}

.video-wrap-1 .play-wrapper .item-img .play-area .play-btn.style-2:hover .play-icon-2 {
	color: var(--color-white);
}

.about-banner-wrap-1 {
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	position: relative;
	padding: 270px 0px 290px;
	margin-top: -100px;
}

@media only screen and (max-width: 991px) {
	.about-banner-wrap-1 {
		padding: 150px 0px;
		margin-top: 0;
	}
}

.about-banner-wrap-1::before {
	content: "";
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	position: absolute;
	top: 0;
	right: 0;
}

.about-banner-box-1 {
	position: relative;
	z-index: 1;
}

.about-banner-box-1 .breadcrumb-box-1 .title {
	font-weight: 600;
	font-size: 30px;
	line-height: 36px;
	color: #FFFFFF;
	margin-bottom: 0;
}

.about-info-box-1 {
	background-color: #fff;
}

@media only screen and (min-width: 1200px) {
	.about-info-box-1 {
		margin-top: -245px;
		padding: 100px 120px 70px;
	}
}

@media only screen and (max-width: 1199px) {
	.about-info-box-1 {
		padding: 70px 0px;
	}
}

.about-info-box-1 .info {
	margin-bottom: 25px;
}

.about-info-box-1 .info .title {
	font-size: 40px;
	line-height: 48px;
}

@media only screen and (max-width: 767px) {
	.about-info-box-1 .info .title {
		font-size: 30px;
		line-height: 36px;
	}
}

@media only screen and (max-width: 479px) {
	.about-info-box-1 .info .title {
		font-size: 24px;
		line-height: 30px;
	}
}

.about-info-box-1 .info p {
	font-weight: 500;
	font-size: 18px;
	line-height: 31px;
	color: var(--color-secondary);
}

.about-info-box-1 .description-box-1 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 50px;
}

@media only screen and (max-width: 479px) {
	.about-info-box-1 .description-box-1 {
		display: block;
	}
}

.about-info-box-1 .mission-box-1 .title {
	font-size: 30px;
	line-height: 36px;
}

@media only screen and (max-width: 479px) {
	.about-info-box-1 .mission-box-1 .title {
		font-size: 24px;
		line-height: 30px;
	}
}

.about-info-box-1 .item-img {
	margin-bottom: 80px;
}

.about-info-box-1 .feature-box .title {
	font-size: 36px;
	line-height: 43px;
	margin-bottom: 45px;
}

@media only screen and (max-width: 767px) {
	.about-info-box-1 .feature-box .title {
		font-size: 30px;
		line-height: 36px;
	}
}

@media only screen and (max-width: 479px) {
	.about-info-box-1 .feature-box .title {
		font-size: 24px;
		line-height: 30px;
	}
}

.about-info-box-1 .feature-box .rt-feature-box {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 430px 80px 430px;
	grid-template-columns: repeat(2, 430px);
	grid-gap: 50px 80px;
}

@media only screen and (max-width: 991px) {
	.about-info-box-1 .feature-box .rt-feature-box {
		-ms-grid-columns: 308px 80px 308px;
		grid-template-columns: repeat(2, 308px);
	}
}

@media only screen and (max-width: 767px) {
	.about-info-box-1 .feature-box .rt-feature-box {
		-ms-grid-columns: 430px;
		grid-template-columns: repeat(1, 430px);
	}
}

@media only screen and (max-width: 479px) {
	.about-info-box-1 .feature-box .rt-feature-box {
		display: block;
	}
}

@media only screen and (max-width: 479px) {
	.rt-feature-box.feature-box-9 .rt-feature {
		margin-bottom: 20px;
	}
}

.rt-feature-box.feature-box-9 .rt-feature:hover .item-icon {
	-webkit-transform: translateY(-7px);
	transform: translateY(-7px);
}

.rt-feature-box.feature-box-9 .rt-feature .item-icon {
	margin-bottom: 15px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.rt-feature-box.feature-box-9 .rt-feature .rt-title {
	font-weight: 700;
	font-size: 20px;
	line-height: 24px;
}

.rt-feature-box.feature-box-9 .rt-feature p {
	margin-bottom: 0;
}

.testimonial-wrap-1 {
	background-color: var(--color-grey);
	padding-bottom: 180px;
}

.rt__testimonial__1 {
	position: relative;
}

.rt__testimonial__1 .navigation-area-1 .swiper-button-next,
.rt__testimonial__1 .navigation-area-1 .swiper-button-prev {
	height: 30px;
	width: 30px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border: 1px solid #cdcdcd;
	border-radius: 50%;
	position: absolute;
	bottom: -80px;
	top: inherit;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.rt__testimonial__1 .navigation-area-1 .swiper-button-next:hover,
.rt__testimonial__1 .navigation-area-1 .swiper-button-prev:hover {
	border: 1px solid var(--color-secondary);
}

.rt__testimonial__1 .navigation-area-1 .swiper-button-next:hover i,
.rt__testimonial__1 .navigation-area-1 .swiper-button-prev:hover i {
	color: var(--color-secondary);
}

.rt__testimonial__1 .navigation-area-1 .swiper-button-next i,
.rt__testimonial__1 .navigation-area-1 .swiper-button-prev i {
	color: #cdcdcd;
	font-size: 10px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.rt__testimonial__1 .navigation-area-1 .swiper-button-next::after,
.rt__testimonial__1 .navigation-area-1 .swiper-button-prev::after {
	display: none;
}

.rt__testimonial__1 .navigation-area-1 .swiper-button-next {
	right: 270px;
}

@media screen and (max-width: 991px) {
	.rt__testimonial__1 .navigation-area-1 .swiper-button-next {
		right: 40px;
	}
}

@media screen and (max-width: 767px) {
	.rt__testimonial__1 .navigation-area-1 .swiper-button-next {
		right: 60%;
		-webkit-transform: translateX(50%);
		transform: translateX(50%);
		bottom: -60px;
	}
}

@media (max-width: 575px) {
	.rt__testimonial__1 .navigation-area-1 .swiper-button-next {
		right: 55%;
	}
}

@media screen and (max-width: 320px) {
	.rt__testimonial__1 .navigation-area-1 .swiper-button-next {
		right: 63%;
	}
}

.rt__testimonial__1 .navigation-area-1 .swiper-button-prev {
	right: 235px;
}

@media screen and (max-width: 991px) {
	.rt__testimonial__1 .navigation-area-1 .swiper-button-prev {
		right: 0px;
	}
}

@media screen and (max-width: 767px) {
	.rt__testimonial__1 .navigation-area-1 .swiper-button-prev {
		right: 50%;
		-webkit-transform: translateX(50%);
		transform: translateX(50%);
		bottom: -60px;
	}
}

@media (max-width: 575px) {
	.rt__testimonial__1 .navigation-area-1 .swiper-button-prev {
		right: 45%;
	}
}

.swiper-button-next,
.swiper-button-prev,
.swiper-container-rtl .swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
	background-image: none;
}

.rt__testimonial__1 .navigation-area-1 .swiper-pagination {
	width: 750px;
	height: 1px;
	right: 320px;
	bottom: -67px;
	position: absolute;
	background: #cdcdcd;
	top: inherit;
}

@media (max-width: 1199px ) and ( min-width: 992px ) {
	.rt__testimonial__1 .navigation-area-1 .swiper-pagination {
		width: 650px;
	}
}

@media screen and (max-width: 991px) {
	.rt__testimonial__1 .navigation-area-1 .swiper-pagination {
		width: 600px;
		right: 90px;
	}
}

@media screen and (max-width: 767px) {
	.rt__testimonial__1 .navigation-area-1 .swiper-pagination {
		display: none;
	}
}

.rt__testimonial__1 .navigation-area-1 .swiper-pagination .swiper-pagination-progressbar-fill {
	background-color: var(--color-secondary);
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transform-origin: right top;
	transform-origin: right top;
}

.testimonial__inner__1 .testimonial-box-1 {
	background: #FFFFFF;
	padding: 50px 30px 40px 30px;
	position: relative;
	z-index: 1;
	border: 1px solid #E6E6E6;
}

.testimonial__inner__1 .testimonial-box-1:hover .item-shape img {
	-webkit-transform: rotateY(-180deg);
	transform: rotateY(-180deg);
}

.testimonial__inner__1 .testimonial-box-1:hover .item-quote:before {
	background-color: var(--color-primary);
}

.testimonial__inner__1 .testimonial-box-1 .item-shape {
	margin-bottom: 20px;
}

.testimonial__inner__1 .testimonial-box-1 .item-shape img {
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.testimonial__inner__1 .testimonial-box-1 .item-quote {
	font-style: italic;
	font-weight: 400;
	font-size: 15px;
	line-height: 26px;
	padding-right: 15px;
	position: relative;
	margin-bottom: 25px;
}

.testimonial__inner__1 .testimonial-box-1 .item-quote:before {
	height: 100%;
	width: 1px;
	background-color: #d9d9d9;
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.testimonial__inner__1 .testimonial-box-1 .review-area {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
}

.testimonial__inner__1 .testimonial-box-1 .review-area .item-img {
	position: relative;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
}

.testimonial__inner__1 .testimonial-box-1 .review-area .item-content .item-name {
	font-weight: 500;
	font-size: 15px;
	line-height: 20px;
	color: var(--color-secondary);
	margin-bottom: 5px;
	font-family: "DM Sans", sans-serif;
}

.testimonial__inner__1 .testimonial-box-1 .review-area .item-content .item-designation {
	font-style: italic;
	font-weight: 400;
	font-size: 13px;
	line-height: 17px;
	color: #B0AEAE;
	margin-bottom: 5px;
}

.testimonial__inner__1 .testimonial-box-1 .review-area .item-content .review ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 3px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.testimonial__inner__1 .testimonial-box-1 .review-area .item-content .review ul li.star-rate i {
	color: #B0AEAE;
	font-size: 15px;
}

.testimonial__inner__1 .testimonial-box-1 .review-area .item-content .review ul li.star-rate i {
	color: #F6CB30;
}

.testimonial__inner__2 {
	position: relative;
}

@media (max-width: 991px) {
	.testimonial__inner__2 .navigation-area {
		margin-bottom: 90px;
	}
}

.testimonial__inner__2 .navigation-area .swiper-button-next,
.testimonial__inner__2 .navigation-area .swiper-button-prev {
	background: #FFFFFF;
	-webkit-box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.05);
	box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.05);
	width: 70px;
	height: 70px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 50%;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	margin: 0;
}

@media only screen and (max-width: 991px) {
	.testimonial__inner__2 .navigation-area .swiper-button-next,
	.testimonial__inner__2 .navigation-area .swiper-button-prev {
		height: 60px;
		width: 60px;
	}
}

.testimonial__inner__2 .navigation-area .swiper-button-next:hover,
.testimonial__inner__2 .navigation-area .swiper-button-prev:hover {
	background-color: var(--color-primary);
}

.testimonial__inner__2 .navigation-area .swiper-button-next:hover i,
.testimonial__inner__2 .navigation-area .swiper-button-prev:hover i {
	color: var(--color-white);
	-webkit-animation: toRightFromLeft 0.5s forwards;
	animation: toRightFromLeft 0.5s forwards;
}

.testimonial__inner__2 .navigation-area .swiper-button-next i,
.testimonial__inner__2 .navigation-area .swiper-button-prev i {
	color: #A1A1A1;
	font-size: 16px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.testimonial__inner__2 .navigation-area .swiper-button-next::after,
.testimonial__inner__2 .navigation-area .swiper-button-prev::after {
	display: none;
}

.testimonial__inner__2 .navigation-area .swiper-button-next {
	left: -30px;
}

@media only screen and (max-width: 1400px) {
	.testimonial__inner__2 .navigation-area .swiper-button-next {
		left: 0;
	}
}

.testimonial__inner__2 .navigation-area .swiper-button-prev {
	right: -30px;
}

@media only screen and (max-width: 1400px) {
	.testimonial__inner__2 .navigation-area .swiper-button-prev {
		right: 0;
	}
}

@media only screen and (max-width: 991px) {
	.testimonial__inner__2 .navigation-area .swiper-button-prev,
	.testimonial__inner__2 .navigation-area .swiper-button-next {
		transform: translateX(50%);
		bottom: -90px;
	}

	.testimonial__inner__2 .navigation-area .swiper-button-prev {
		top: inherit;
		right: 45%;
	}

	.testimonial__inner__2 .navigation-area .swiper-button-next {
		top: inherit;
		right: 55%;
	}
}

@media only screen and (max-width: 575px) {
	.testimonial__inner__2 .navigation-area .swiper-button-prev {
		right: 40%;
	}

	.testimonial__inner__2 .navigation-area .swiper-button-next {
		right: 60%;
	}
}

.testimonial-wrap-2 {
	padding: 120px 0px 0px 0px;
}

.testimonial-wrap-2 .section-heading {
	height: auto;
}

.testimonial-wrap-3 {
	background-color: #f8f8f8;
}

.testimonial-box-2 {
	border: 1px solid #d9d9d9;
	text-align: center;
	padding: 40px 50px;
}

@media only screen and (max-width: 479px) {
	.testimonial-box-2 {
		padding: 30px;
	}
}

.testimonial-box-2:hover .item-icon {
	-webkit-transform: translateY(-10px);
	transform: translateY(-10px);
}

.testimonial-box-2 .item-icon {
	height: 96px;
	width: 96px;
	background-color: #F9F4ED;
	border-radius: 50%;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 15px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-webkit-transform: translateY(0px);
	transform: translateY(0px);
}

.testimonial-box-2 p {
	font-style: italic;
	font-weight: 400;
	font-size: 18px;
	line-height: 35px;
	text-align: center;
	color: var(--color-secondary);
	margin-bottom: 40px;
}

.testimonial-box-2 .review-area {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.testimonial-box-2 .review-area .title-box .title {
	font-weight: 500;
	font-size: 18px;
	line-height: 20px;
	margin-bottom: 5px;
}

.testimonial-box-2 .review-area .title-box .title .designation {
	font-style: italic;
	font-weight: 400;
	font-size: 15px;
	line-height: 17px;
	color: #A9A8A8;
	padding-right: 5px;
}

.testimonial-box-2 .review-area .title-box .review {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.testimonial-box-2 .review-area .title-box .review li i {
	color: #A9A8A8;
	font-size: 15px;
}

.testimonial-box-2 .review-area .title-box .review li.star-rate i {
	color: #F7CB30;
}

.sd-testimonial-1 {
	position: relative;
}

.sd-testimonial-1 .navigation-area-1 .swiper-button-next, .sd-testimonial-1 .navigation-area-1 .swiper-button-prev {
	height: 50px;
	width: 50px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 50%;
	position: absolute;
	top: 0;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	background-color: #F3F3F3;
}

.sd-testimonial-1 .navigation-area-1 .swiper-button-next:hover, .sd-testimonial-1 .navigation-area-1 .swiper-button-prev:hover {
	border: 1px solid var(--color-secondary);
}

.sd-testimonial-1 .navigation-area-1 .swiper-button-next:hover i, .sd-testimonial-1 .navigation-area-1 .swiper-button-prev:hover i {
	color: var(--color-secondary);
}

.sd-testimonial-1 .navigation-area-1 .swiper-button-next i, .sd-testimonial-1 .navigation-area-1 .swiper-button-prev i {
	color: var(--color-secondary);
	font-size: 16px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.sd-testimonial-1 .navigation-area-1 .swiper-button-next::after, .sd-testimonial-1 .navigation-area-1 .swiper-button-prev::after {
	display: none;
}

.sd-testimonial-1 .navigation-area-1 .swiper-button-next {
	left: 0;
}

.sd-testimonial-1 .navigation-area-1 .swiper-button-prev {
	left: 55px;
	right: auto;
}

.testimonial-box-3 {
	background: #FFFFFF;
	padding: 50px 30px 40px 30px;
	position: relative;
	z-index: 1;
}

.testimonial-box-3:hover .item-shape img {
	-webkit-transform: rotateY(-180deg);
	transform: rotateY(-180deg);
}

.testimonial-box-3:hover .item-quote:before {
	background-color: var(--color-primary);
}

.testimonial-box-3 .item-shape {
	margin-bottom: 20px;
	height: 96px;
	width: 96px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background-color: #FFF8F9;
	border-radius: 50%;
}

.testimonial-box-3 .item-shape img {
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.testimonial-box-3 .item-quote {
	font-weight: 500;
	font-size: 18px;
	line-height: 30px;
	color: var(--color-secondary);
	padding-right: 15px;
	position: relative;
	margin-bottom: 25px;
}

.testimonial-box-3 .review-area {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
}

.testimonial-box-3 .review-area .item-img {
	position: relative;
}

.testimonial-box-3 .review-area .item-content .item-name {
	font-weight: 500;
	font-size: 18px;
	line-height: 23px;
	color: var(--color-secondary);
	margin-bottom: 5px;
}

.testimonial-box-3 .review-area .item-content .item-designation {
	font-style: italic;
	font-weight: 400;
	font-size: 13px;
	line-height: 17px;
	color: #A9A8A8;
	margin-bottom: 5px;
}

.testimonial-box-3 .review-area .item-content .review ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 3px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.testimonial-box-3 .review-area .item-content .review ul li i {
	color: #A9A8A8;
	font-size: 15px;
}

.testimonial-box-3 .review-area .item-content .review ul li.star-rate i {
	color: #F6CB30;
}

.load-more-wrapper .item-button,
.blog-wrap-1 .item-button {
	text-align: center;
	margin-top: 60px;
}

@media (max-width: 1199px) {
	.load-more-wrapper .item-button,
	.blog-wrap-1 .item-button {
		margin-bottom: 60px;
	}
}

.load-more-wrapper .item-button .btn,
.blog-wrap-1 .item-button .btn {
	border: 1px solid var(--color-secondary);
	color: var(--color-secondary);
	background-color: transparent;
}

.load-more-wrapper .item-button .btn .shape,
.blog-wrap-1 .item-button .btn .shape {
	margin-right: 10px;
}

.load-more-wrapper .item-button .btn .shape svg,
.blog-wrap-1 .item-button .btn .shape svg {
	color: var(--color-secondary);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.load-more-wrapper .item-button .btn:hover,
.blog-wrap-1 .item-button .btn:hover {
	color: var(--color-white);
}

.load-more-wrapper .item-button .btn:hover .shape svg,
.blog-wrap-1 .item-button .btn:hover .shape svg {
	color: var(--color-white);
}

.item-button .loading-lazy .shape,
.rdtheme-loadmore-btn.loader-icon svg,
.rt-product-loadmore-btn .btn.style-3.loader-icon svg {
	z-index: 8;
	animation: spin 0.7s infinite linear;
}

@media only screen and (max-width: 1199px) {
	.blog-box-1 {
		margin-bottom: 24px;
	}
}

.blog-box-1 .blog-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}

@media only screen and (max-width: 767px) {
	.blog-box-1 .blog-inner {
		display: block;
	}
}

.blog-box-1 .blog-inner:hover .item-img a img {
	-webkit-transform: translate3d(0px, 0, 0);
	transform: translate3d(0px, 0, 0);
}

.blog-box-1 .blog-inner .item-img {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.blog-box-1 .blog-inner .item-img a {
	display: block;
	overflow: hidden;
	height: 100%;
	width: 100%;
}

.blog-box-1 .blog-inner .item-img a img {
	max-width: none;
	width: calc(100% + 30px);
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
	-webkit-transform: translate3d(20px, 0, 0);
	transform: translate3d(20px, 0, 0);
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.blog-box-1 .blog-inner .item-content {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding: 30px 25px;
	-webkit-box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
	background-color: var(--color-white);
	min-height: 270px;
	min-width: 357px;
}

@media (min-width: 783px) and (max-width: 1199px) {
	.blog-box-1 .blog-inner .item-content {
		min-width: 55%;
	}
}

@media (max-width: 991px) {
	.blog-box-1 .blog-inner .item-content {
		min-width: 60%;
	}
}

@media only screen and (max-width: 320px) {
	.blog-box-1 .blog-inner .item-content {
		min-height: auto;
		min-width: auto;
	}
}

.blog-box-1 .blog-inner .item-content .item-tag ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}

.blog-box-1 .blog-inner .item-content .item-tag {
	margin-bottom: 10px;
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
}

.blog-box-1 .blog-inner .item-content .item-tag a {
	font-family: var(--font-btn);
	font-weight: 600;
	font-size: 12px;
	line-height: 14px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-secondary);
	background-color: #f6f6f6;
	padding: 10px 20px;
	display: inline-block;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.blog-box-1 .blog-inner .item-content .item-tag a:hover {
	background-color: var(--color-primary);
	color: var(--color-white);
}

.blog-box-1 .blog-inner .item-content .style-2 a {
	background-color: #f3f3f3;
	color: var(--color-secondary);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.blog-box-1 .blog-inner .item-content .style-2 a:hover {
	color: var(--color-white);
	background-color: var(--color-primary);
}

.blog-box-1 .blog-inner .item-content .color a {
	background-color: var(--color-primary);
}

.blog-box-1 .blog-inner .item-content .heading-title {
	font-size: 20px;
	font-weight: 600;
	font-size: 20px;
	line-height: 30px;
}

.blog-box-1 .blog-inner .item-content .heading-title a {
	color: #000000;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.blog-box-1 .blog-inner .item-content .heading-title a:hover {
	color: var(--color-primary);
}

.blog-box-1 .blog-inner .item-content p {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.blog-box-1 .blog-inner .item-content .entry-meta {
	margin: 0;
	padding: 0;
}
.blog-box-1 .blog-inner .item-content .entry-meta li{
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 15px;
	line-height: 0;
}
.blog-box-1.style-1 {
	margin-bottom: 24px;
}

.blog-box-2:hover .item-img a img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.blog-box-2 .item-img {
	overflow: hidden;
}

@media only screen and (max-width: 767px) {
	.blog-box-2 .item-img a {
		width: 100%;
	}
}

.blog-box-2 .item-img a img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all 1s;
	transition: all 1s;
}

@media only screen and (max-width: 767px) {
	.blog-box-2 .item-img a img {
		width: 100%;
	}
}

.blog-box-2 .item-content {
	padding: 30px 0px 35px;
}

.single-item.sticky .blog-box-2 .item-content {
	background-color: #F8FCFF;
	padding-right: 30px;
	padding-left: 30px;
}

.blog-box-2 .item-content .meta-tag a {
	font-weight: 600;
	font-size: 15px;
	line-height: 17px;
	background-color: #f3f3f3;
	padding: 9px 20px;
	display: inline-block;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	color: var(--color-secondary);
	margin-bottom: 10px;
}

.blog-box-2 .item-content .meta-tag a:hover {
	background-color: var(--color-primary);
	color: var(--color-white);
}

.blog-box-2 .item-content .title a {
	font-weight: 600;
	font-size: 30px;
	line-height: 45px;
	color: var(--color-secondary);
	display: block;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 1199px) {
	.blog-box-2 .item-content .title a {
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
		line-height: 36px;
	}
}

@media only screen and (max-width: 479px) {
	.blog-box-2 .item-content .title a {
		font-size: 24px;
		line-height: 30px;
	}
}

.blog-box-2 .item-content .title a:hover {
	color: var(--color-primary);
}

@media only screen and (min-width: 1200px) {
	.blog-box-2 .item-content .title {
		width: 555px;
	}

	.blog-box-2.blog-default .item-content .title {
		width: 100%;
	}
}

.blog-box-2 .item-content .entry-meta {
	margin-top: 5px;
}

.blog-box-2 .item-content .entry-meta ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 40px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.blog-box-2 .item-content .entry-meta ul li {
	font-size: 15px;
	line-height: 20px;
}

.blog-box-2 .item-content .entry-meta ul li a {
	font-size: 15px;
	line-height: 20px;
	color: #7A7A7A;
	display: inline-block;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.blog-box-2 .item-content .entry-meta ul li a:hover {
	color: var(--color-primary);
}

.blog-box-2 .item-content .entry-meta ul li a i {
	margin-left: 8px;
}

.blog-box-2 .item-content .entry-meta ul li i {
	margin-left: 8px;
}

.blog-box-3 .item-content .title {
	width: auto;
}

.blog-box-4 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 30px;
	margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
	.blog-box-4 {
		display: block;
		margin-bottom: 0;
	}
}

.blog-box-4 .item-content {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.blog-box-4 .item-content .title {
	width: auto;
}

@media ( max-width: 1199px ) {
	.single-blog-wrap {
		margin-bottom: 30px;
	}
}

.single-blog-box-1 .item-tag a {
	font-weight: 600;
	font-size: 15px;
	line-height: 17px;
	background-color: #f3f3f3;
	padding: 9px 20px;
	display: inline-block;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	color: var(--color-secondary);
	margin-bottom: 10px;
}

.single-blog-box-1 .title {
	font-weight: 600;
	font-size: 30px;
	line-height: 45px;
	color: var(--color-secondary);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 479px) {
	.single-blog-box-1 .title {
		font-size: 24px;
		line-height: 30px;
	}
}

.single-blog-box-1 .entry-meta {
	margin-top: 5px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 40px;
	padding: 0;
	list-style: none;
	margin: 0 0 30px;
}

.single-blog-box-1 .entry-meta li {
	font-size: 15px;
	line-height: 20px;
	color: #7A7A7A;
}

.single-blog-box-1 .entry-meta li i {
	margin-left: 8px;
}

.single-blog-box-1 .single-post-img {
	padding: 15px 0px 50px;
}

.single-blog-box-1 .description {
	font-style: italic;
	font-weight: 700;
	font-size: 18px;
	line-height: 28px;
	color: var(--color-secondary);
}

.single-blog-box-1 p.margin-0 {
	margin: 0;
}

.single-blog-action-area {
	padding: 25px 0px 0;
}

.single-blog-action-area .post-img-area {
	padding: 20px 0px 42px;
}

@media only screen and (max-width: 767px) {
	.single-blog-action-area .post-img-area .post-img {
		margin-bottom: 30px;
	}
}

@media only screen and (max-width: 767px) {
	.single-blog-action-area .post-img-area .post-img img {
		width: 100%;
	}
}

@media only screen and (max-width: 767px) {
	.single-blog-action-area .post-img-area .style-2 {
		margin-bottom: 0px;
	}
}

.single-blog-action-area p {
	line-height: 28px;
	margin-bottom: 30px;
}

blockquote {
	border: none !important;
	padding: 40px 60px !important;
	background: #f7f7f7;
	margin-bottom: 30px;
}

blockquote p {
	font-size: 22px;
	font-weight: 600;
	font-family: var(--font-title);
	font-style: italic;
	color: var(--color-secondary);
}

blockquote.wp-block-quote p:last-of-type,
.rt-blog-single.style-1 .quote-content p:last-of-type {
	margin-bottom: 0;
}

.single-blog-action-area .single-tag-share-area {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media only screen and (max-width: 479px) {
	.single-blog-action-area .single-tag-share-area {
		display: block;
	}
}

.single-blog-action-area .single-tag-share-area .tag ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 2px;
}

.single-blog-action-area .single-tag-share-area .tags a {
	display: inline-block;
	font-weight: 400;
	font-size: 15px;
	line-height: 28px;
	color: #848484;
	margin-right: 3px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.single-blog-action-area .single-tag-share-area .tags a:hover {
	color: var(--color-primary);
}

.single-blog-action-area .single-tag-share-area .tags .tag-title {
	font-weight: 700;
	font-size: 15px;
	line-height: 28px;
	color: var(--color-secondary);
}

.single-blog-action-area .single-tag-share-area .share ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.single-blog-action-area .single-tag-share-area .share ul li a {
	font-weight: 400;
	font-size: 15px;
	line-height: 16px;
	display: inline-block;
	margin-top: 5px;
}

.single-blog-action-area .single-tag-share-area .share ul li a:hover i {
	color: var(--color-primary);
	-webkit-animation: toBottomFromTop 0.5s forwards;
	animation: toBottomFromTop 0.5s forwards;
}

.single-blog-action-area .single-tag-share-area .share ul li a i {
	color: #AAAAAA;
}

.single-blog-action-area .single-tag-share-area .share ul .label {
	font-weight: 700;
	font-size: 15px;
	line-height: 28px;
	color: var(--color-secondary);
}

.single-blog-bottom-area {
	border-top: 1px solid #d9d9d9;
	margin-top: 35px;
}

.single-blog-bottom-area .post-pagination {
	padding: 50px 0px 55px;
	position: relative;
}

@media only screen and (max-width: 991px) {
	.single-blog-bottom-area .post-pagination {
		padding-bottom: 50px;
	}
}

.single-blog-bottom-area .post-pagination::after {
	content: "";
	height: 30px;
	width: 2px;
	background-color: #d9d9d9;
	position: absolute;
	top: 50%;
	right: 50%;
	-webkit-transform: translate(50%, -50%);
	transform: translate(50%, -50%);
}

@media only screen and (max-width: 767px) {
	.single-blog-bottom-area .post-pagination::after {
		display: none;
	}
}

.single-blog-bottom-area .post-pagination .previous-area {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
}

@media only screen and (max-width: 767px) {
	.single-blog-bottom-area .post-pagination .previous-area {
		margin-bottom: 20px;
	}
}

.single-blog-bottom-area .post-pagination .previous-area .button-area a {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 50%;
	background-color: #f9f9f9;
	height: 40px;
	width: 40px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
}

.single-blog-bottom-area .post-pagination .previous-area .button-area a:hover {
	background-color: var(--color-primary);
}

.single-blog-bottom-area .post-pagination .previous-area .button-area a:hover i {
	color: var(--color-white);
	-webkit-animation: toRightFromLeft 0.5s forwards;
	animation: toRightFromLeft 0.5s forwards;
}

.single-blog-bottom-area .post-pagination .previous-area .button-area a i {
	color: var(--color-secondary);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.single-blog-bottom-area .post-pagination .previous-area .content .subtitle {
	font-weight: 400;
	font-size: 15px;
	line-height: 20px;
	color: #808080;
	display: block;
	margin-bottom: 5px;
}

.single-blog-bottom-area .post-pagination .previous-area .content .title {
	margin-bottom: 0;
}

@media screen and (min-width: 1200px) {
	.single-blog-bottom-area .post-pagination .previous-area .content .title {
		width: 265px;
	}
}

.single-blog-bottom-area .post-pagination .previous-area .content .title a {
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	color: var(--color-secondary);
}

.single-blog-bottom-area .post-pagination .previous-area .content .title a:hover {
	color: var(--color-primary);
}

.single-blog-bottom-area .post-pagination .next-area {
	text-align: left;
}

@media only screen and (max-width: 767px) {
	.single-blog-bottom-area .post-pagination .next-area {
		margin-bottom: 0px;
	}
}

.single-blog-bottom-area .post-pagination .next-area .content .title {
	width: auto;
	padding-right: 70px;
}

@media only screen and (max-width: 479px) {
	.single-blog-bottom-area .post-pagination .next-area .content .title {
		padding-right: 0;
	}
}

.single-blog-bottom-area .post-form-box .rt-contact-form .title {
	font-weight: 600;
	font-size: 22px;
	line-height: 26px;
}

.single-blog-bottom-area .post-form-box .rt-contact-form .label {
	margin-bottom: 25px;
	display: block;
}

.single-blog-bottom-area .post-form-box .rt-contact-form .form-group {
	margin-bottom: 24px;
}

.single-blog-bottom-area .post-form-box .rt-contact-form .form-group .rt-form-control {
	height: 50px;
}

.single-blog-bottom-area .post-form-box .rt-contact-form .form-group .rt-form-control.rt-textarea {
	height: 265px;
}

.single-blog-bottom-area .post-form-box .rt-contact-form .form-check {
	padding-right: 10px;
	margin-bottom: 30px;
}

.single-blog-bottom-area .post-form-box .rt-contact-form .form-check input[type=checkbox] + label {
	padding: 0;
	font-size: 15px;
	line-height: inherit;
	color: var(--color-secondary);
	margin: 0;
}

.product-wrap-1 {
	padding-bottom: 90px;
}

@media only screen and (max-width: 575px) {
	.product-wrap-1 {
		padding: 50px 0px 40px 0px;
	}
}

.product-wrap-1 .section-heading .heading-shape {
	right: -15px;
}

.rt-product-box {
	position: relative;
}

.rt-product-box:hover .product-box-1 .item-img a img {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

.rt-product-box:hover .item-content .product-name {
	color: transparent;
}

.rt-product-box:hover .product-info .item-content-2 {
	opacity: 1;
	right: 0;
}

.rt-product-box .product-box-1 {
	min-height: 300px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	overflow: hidden;
	background-color: #f2f2f2;
	margin-bottom: 15px;
}

.rt-product-box .product-box-1 .item-img {
	text-align: center;
}

.rt-product-box .product-box-1 .item-img a img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all 0.4s ease-out;
	transition: all 0.4s ease-out;
}

.rt-product-box .item-content .item-price {
	font-size: 20px;
	font-weight: 600;
	font-family: var(--font-title);
	color: var(--color-primary);
}

.rt-product-box .item-content .product-name {
	color: #111111;
	font-size: 18px;
	font-weight: 600;
	font-family: var(--font-title);
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.rt-product-box .product-info .item-content-2 {
	opacity: 0;
	position: absolute;
	bottom: 30px;
	right: -30px;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	z-index: 9;
}

.rt-product-box .product-info .item-content-2 .product-name {
	color: #111111;
	font-size: 18px;
	font-weight: 600;
	font-family: var(--font-title);
}

.rt-product-box .product-info .item-content-2 .product-name i {
	color: var(--color-secondary);
	margin-left: 7px;
	font-size: 20px;
}

.product-wrap-2 .item-button,
.rt-product-loadmore-btn {
	margin-top: 40px;
}

.product-box-2:hover .item-img a img {
	-webkit-transform: scale(1.22) rotateY(0deg);
	transform: scale(1.22) rotateY(0deg);
}

.product-box-2:hover .rt-content .woo-social ul li {
	-webkit-transform: translateX(0);
	transform: translateX(0);
	opacity: 1;
	visibility: visible;
}

.product-box-2 .item-img {
	background-color: #FFF4F6;
	height: 450px;
	width: 400px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	overflow: hidden;
}

@media only screen and (max-width: 1199px) {
	.product-box-2 .item-img {
		width: 100%;
	}
}

@media only screen and (max-width: 1199px) {
	.product-box-2 .item-img a {
		width: 100%;
	}
}

.product-box-2 .item-img a img {
	-webkit-transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
	transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
	-webkit-transform: scale(1);
	transform: scale(1);
}

@media only screen and (max-width: 1199px) {
	.product-box-2 .item-img a img {
		width: 100%;
	}
}

.product-box-2 .bg-2 {
	background-color: #F4FFF7;
}

.product-box-2 .bg-3 {
	background-color: #F7F7F7;
}

.product-box-2 .bg-4 {
	background-color: #FFF9F4;
}

.product-box-2 .bg-5 {
	background-color: #F4FAFF;
}

.product-box-2 .bg-6 {
	background-color: #F8F4FF;
}

.product-box-2 .rt-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-top: 30px;
}

.product-box-2 .rt-content .content .title {
	font-weight: 400;
	font-size: 18px;
	line-height: 21px;
	margin-bottom: 10px;
}

@media only screen and (max-width: 320px) {
	.product-box-2 .rt-content .content .title {
		font-size: 15px;
		line-height: 18px;
	}
}

.product-box-2 .rt-content .content .title a {
	color: var(--color-secondary);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.product-box-2 .rt-content .content .title a:hover {
	color: var(--color-primary);
}

.product-box-2 .rt-content .content .price {
	font-weight: 700;
	font-size: 18px;
	line-height: 21px;
	color: #161F38;
}

.product-box-2 .rt-content .woo-social ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 5px;
}

.product-box-2 .rt-content .woo-social ul li {
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateX(10px);
	transform: translateX(10px);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.product-box-2 .rt-content .woo-social ul li:nth-child(1) {
	-webkit-transition-delay: 0.4s;
	transition-delay: 0.4s;
}

.product-box-2 .rt-content .woo-social ul li:nth-child(2) {
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
}

.product-box-2 .rt-content .woo-social ul li:nth-child(3) {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

.product-box-2 .rt-content .woo-social ul li:nth-child(4) {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

.product-box-2 .rt-content .woo-social ul li:last-child a {
	margin-bottom: 0;
}

.product-box-2 .rt-content .woo-social ul li a {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	height: 45px;
	width: 45px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background-color: #FAFAFA;
	margin-bottom: 5px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	border-radius: 50%;
}

.product-box-2 .rt-content .woo-social ul li a:hover {
	background-color: var(--color-primary);
}

.product-box-2 .rt-content .woo-social ul li a:hover i {
	color: var(--color-white);
}

.product-box-2 .rt-content .woo-social ul li a i {
	color: var(--color-secondary);
	font-size: 15px;
	font-weight: 600;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.item-button .rdtheme-loadmore-btn,
.product-wrap-3 .item-button {
	text-align: center;
	margin-top: 40px;
}

@media only screen and (max-width: 479px) {
	.item-button .rdtheme-loadmore-btn,
	.product-wrap-3 .item-button {
		margin-top: 30px;
	}
}

.item-button .rdtheme-loadmore-btn.btn,
.product-wrap-3 .item-button .btn {
	border: 1px solid #cdcdcd;
	color: var(--color-secondary);
	background-color: transparent;
}

@media only screen and (max-width: 320px) {
	.item-button .rdtheme-loadmore-btn.btn,
	.product-wrap-3 .item-button .btn {
		font-size: 15px;
		font-weight: 600;
		padding: 12px 21px;
	}
}

.item-button .rdtheme-loadmore-btn.btn svg,
.product-wrap-3 .item-button .btn svg {
	margin-right: 15px;
	color: var(--color-secondary);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.item-button .rdtheme-loadmore-btn.btn:hover,
.product-wrap-3 .item-button .btn:hover {
	color: var(--color-white);
}

.item-button .rdtheme-loadmore-btn.btn:hover svg,
.product-wrap-3 .item-button .btn:hover svg {
	color: var(--color-white);
}

.product-wrap-3 .radius-product-wrap {
	position: relative;
}

.product-wrap-3 .radius-product-wrap .tab--style-10 .rt-filter-dropdown {
	position: absolute;
	top: 0;
	left: 130px;
}

@media only screen and (max-width: 479px) {
	.product-wrap-3 .radius-product-wrap .tab--style-10 .rt-filter-dropdown {
		position: inherit;
		margin-bottom: 30px;
	}
}

.shop-top-filter-area .woocommerce-ordering {
	margin-bottom: 0;
}

.shop-top-filter-area .woocommerce-ordering select,
.product-wrap-3 .radius-product-wrap .tab--style-10 .rt-filter-dropdown .item-filter-box .btn {
	width: 180px;
	height: 50px;
	border: 1px solid #CDCDCD;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: var(--color-secondary);
	font-family: var(--font-title);
	font-weight: 600;
	font-size: 18px;
	line-height: 22px;
	border-radius: 0;
	cursor: pointer;
}

@media only screen and (max-width: 479px) {
	.product-wrap-3 .radius-product-wrap .tab--style-10 .rt-filter-dropdown .item-filter-box .btn {
		width: 100%;
	}
}

.product-wrap-3 .radius-product-wrap .tab--style-10 .rt-filter-dropdown .item-filter-box .btn:focus {
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.shop-top-filter-area .woocommerce-ordering:after,
.shop-top-filter-area .woo-shop-top .woocommerce-ordering:after
.product-wrap-3 .radius-product-wrap .tab--style-10 .rt-filter-dropdown .item-filter-box .btn::after {
	content: "\f107";
	font-family: Font Awesome\ 5 Free;
	font-weight: 600;
	font-size: 15px;
	border: none;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 10px;
}

.product-wrap-3 .radius-product-wrap .tab--style-10 .rt-filter-dropdown .item-filter-box .dropdown-menu {
	min-width: 10rem;
	padding: 30px 0;
	margin: 0;
	color: #212529;
	border: 0;
	border-radius: 0;
	background: #FFFFFF;
	-webkit-box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.15);
}

@media only screen and (max-width: 479px) {
	.product-wrap-3 .radius-product-wrap .tab--style-10 .rt-filter-dropdown .item-filter-box .dropdown-menu {
		width: 100%;
		text-align: center;
	}
}

.product-wrap-3 .radius-product-wrap .tab--style-10 .rt-filter-dropdown .item-filter-box .dropdown-menu li .dropdown-item {
	padding: 0.25rem 1rem;
	border: 0;
	font-family: var(--font-title);
	font-weight: 600;
	font-size: 15px;
	line-height: 30px;
	color: #000000;
}

.product-wrap-3 .radius-product-wrap .tab--style-10 .rt-filter-dropdown .item-filter-box .dropdown-menu li .dropdown-item:hover {
	background-color: var(--color-secondary);
	color: var(--color-white);
}

.product-wrap-3 .radius-product-wrap .tab--style-10 .nav-tabs {
	border: 1px solid #cdcdcd;
	position: absolute;
	left: 0;
	top: 0;
}

@media only screen and (max-width: 479px) {
	.product-wrap-3 .radius-product-wrap .tab--style-10 .nav-tabs {
		position: inherit;
		margin-bottom: 30px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

.woocommerce .shop-top-filter-area .nav-tabs .nav-item,
.product-wrap-3 .radius-product-wrap .tab--style-10 .nav-tabs .nav-item {
	border-bottom: 0;
	display: inline-block;
}

.woocommerce .shop-top-filter-area .nav-tabs .nav-item:last-child,
.product-wrap-3 .radius-product-wrap .tab--style-10 .nav-tabs .nav-item:last-child {
	margin-left: 0;
}

.woocommerce .shop-top-filter-area .nav-tabs .nav-item .nav-link,
.product-wrap-3 .radius-product-wrap .tab--style-10 .nav-tabs .nav-item .nav-link {
	color: var(--color-secondary);
	font-size: 18px;
	display: inline-block;
	font-weight: 400;
	font-family: var(--font-title);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	border-radius: 0;
	padding: 10px 5px;
	border: 0;
	background-color: transparent;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.woocommerce .shop-top-filter-area .nav-tabs .nav-item .nav-link svg,
.product-wrap-3 .radius-product-wrap .tab--style-10 .nav-tabs .nav-item .nav-link svg {
	color: #b4b4b4;
}

.woocommerce .shop-top-filter-area .nav-tabs .nav-item .nav-link.active,
.product-wrap-3 .radius-product-wrap .tab--style-10 .nav-tabs .nav-item .active {
	color: var(--color-secondary);
}

.woocommerce .shop-top-filter-area .nav-tabs .nav-item .nav-link.active svg,
.product-wrap-3 .radius-product-wrap .tab--style-10 .nav-tabs .nav-item .active svg {
	color: var(--color-secondary);
}

.product-wrap-3 .rt-filter-dropdown {
	position: absolute;
	top: 0;
	left: 0px;
}

@media only screen and (max-width: 479px) {
	.product-wrap-3 .rt-filter-dropdown {
		position: inherit;
		margin-bottom: 30px;
	}
}

.product-wrap-3 .rt-filter-dropdown .item-filter-box .btn {
	width: 180px;
	height: 50px;
	border: 1px solid #CDCDCD;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: var(--color-secondary);
	font-family: var(--font-title);
	font-weight: 600;
	font-size: 18px;
	line-height: 22px;
	background-color: #fff;
	border-radius: 0;
}

@media only screen and (max-width: 479px) {
	.product-wrap-3 .rt-filter-dropdown .item-filter-box .btn {
		width: 100%;
	}
}

.product-wrap-3 .rt-filter-dropdown .item-filter-box .btn:focus {
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.product-wrap-3 .rt-filter-dropdown .item-filter-box .btn::after {
	content: "\f107";
	font-family: Font Awesome\ 5 Free;
	font-weight: 600;
	font-size: 15px;
	border: none;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 10px;
}

.product-wrap-3 .rt-filter-dropdown .item-filter-box .dropdown-menu {
	min-width: 10rem;
	padding: 30px 0;
	margin: 0;
	color: #212529;
	border: 0;
	border-radius: 0;
	background: #FFFFFF;
	-webkit-box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.15);
}

@media only screen and (max-width: 479px) {
	.product-wrap-3 .rt-filter-dropdown .item-filter-box .dropdown-menu {
		width: 100%;
		text-align: center;
	}
}

.product-wrap-3 .rt-filter-dropdown .item-filter-box .dropdown-menu li .dropdown-item {
	padding: 0.25rem 1rem;
	border: 0;
	font-family: var(--font-title);
	font-weight: 600;
	font-size: 15px;
	line-height: 30px;
	color: #000000;
}

.product-wrap-3 .rt-filter-dropdown .item-filter-box .dropdown-menu li .dropdown-item:hover {
	background-color: var(--color-secondary);
	color: var(--color-white);
}

.product-wrap-4 {
	position: relative;
	padding: 120px 0px 215px;
}

@media only screen and (max-width: 991px) {
	.product-wrap-4 {
		padding-top: 80px;
	}
}

@media only screen and (max-width: 1199px) {
	.product-wrap-4 .container-fluid {
		padding-left: 0.75em !important;
		padding-right: 0.75em !important;
	}
}

.product-wrap-4 .section-heading {
	height: auto;
}

.product-wrap-4 .rt-product-slider-1 .swiper-slide:not(.swiper-slide-next):not(.swiper-slide-active):not(.swiper-slide-prev) {
	opacity: 0.2;
}

@media only screen and (max-width: 991px) {
	.product-wrap-5 .radius-product-wrap .rt-filter-dropdown {
		position: inherit;
		margin-bottom: 30px;
	}
}

@media only screen and (max-width: 991px) {
	.product-wrap-5 .radius-product-wrap .rt-filter-dropdown .item-filter-box .dropdown .btn-secondary {
		width: 100%;
	}
}

@media only screen and (max-width: 991px) {
	.product-wrap-5 .radius-product-wrap .rt-filter-dropdown .item-filter-box .dropdown .dropdown-menu {
		width: 100%;
	}
}

@media only screen and (max-width: 991px) {
	.product-wrap-5 .radius-product-wrap .rt-filter-dropdown .item-filter-box .dropdown .dropdown-menu li .dropdown-item {
		text-align: center;
	}
}

@media only screen and (max-width: 991px) {
	.product-wrap-6 .product-img-area-2 .item-img img {
		width: 100%;
	}
}

@media only screen and (max-width: 1199px) {
	.product-wrap-8 {
		padding-bottom: 0;
	}
}

.product-wrap-9 {
	padding-bottom: 0px;
}

.product-slider-wrap-1 {
	position: relative;
}

.product-slider-wrap-1 .navigation-area .swiper-button-next,
.product-slider-wrap-1 .navigation-area .swiper-button-prev {
	background: #FFFFFF;
	-webkit-box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.05);
	box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.05);
	width: 60px;
	height: 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 50%;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.product-slider-wrap-1 .navigation-area .swiper-button-next:hover,
.product-slider-wrap-1 .navigation-area .swiper-button-prev:hover {
	background-color: var(--color-primary);
}

.product-slider-wrap-1 .navigation-area .swiper-button-next:hover i,
.product-slider-wrap-1 .navigation-area .swiper-button-prev:hover i {
	color: var(--color-white);
	-webkit-animation: toRightFromLeft 0.5s forwards;
	animation: toRightFromLeft 0.5s forwards;
}

.product-slider-wrap-1 .navigation-area .swiper-button-next i,
.product-slider-wrap-1 .navigation-area .swiper-button-prev i {
	color: var(--color-secondary);
	font-size: 16px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.product-slider-wrap-1 .navigation-area .swiper-button-next::after,
.product-slider-wrap-1 .navigation-area .swiper-button-prev::after {
	display: none;
}

.product-slider-wrap-1 .navigation-area .swiper-button-next {
	left: 0px;
}

.product-slider-wrap-1 .navigation-area .swiper-button-prev {
	right: 0px;
}

.product-slider-wrap-1 .pagination-area .swiper-pagination {
	bottom: -115px;
}

.product-slider-wrap-1 .pagination-area .swiper-pagination .swiper-pagination-bullet {
	height: 15px;
	width: 15px;
	background-color: #C5C5C5;
	opacity: 1;
}

.product-slider-wrap-1 .pagination-area .swiper-pagination .swiper-pagination-bullet-active {
	background-color: #161F38;
}

.product-slider-wrap-1 .feature-box-7:hover .item-img a img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.product-slider-wrap-1 .item-img a {
	width: 100%;
}

.product-slider-wrap-1 .item-img a img {
	width: 100%;
}

.product-wrapper-slider {
	position: relative;
}

.product-wrapper-slider .product-img-area-1 {
	overflow: hidden;
}

.product-wrapper-slider .product-img-area-1 .item-img {
	overflow: hidden;
}

.product-wrapper-slider .product-img-area-1 .item-img img {
	cursor: pointer;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 1199px) {
	.product-wrapper-slider .product-img-area-1 .item-img img {
		width: 100%;
	}
}

.rt-thumbnail-slider-thumb-style-1 {
	height: 607px;
	float: left;
	margin-right: 15px;
	width: calc(23% - 15px);
	position: absolute;
	top: 0;
	left: 0;
}

@media screen and (max-width: 1199px) {
	.rt-thumbnail-slider-thumb-style-1 {
		height: auto;
		float: inherit;
		margin-right: 0;
		width: auto;
		position: inherit;
		margin-top: 20px;
		margin-bottom: 30px;
	}
}

.rt-thumbnail-slider-thumb-style-1 .thumb-img {
	cursor: pointer;
	height: 100%;
}

.rt-thumbnail-slider-thumb-style-1 .thumb-img img {
	-webkit-filter: grayscale(50%);
	filter: grayscale(50%);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

@media only screen and (max-width: 1199px) {
	.rt-thumbnail-slider-thumb-style-1 .thumb-img img {
		width: 100%;
	}
}

.rt-thumbnail-slider-thumb-style-1 .thumb-img img:hover {
	-webkit-filter: grayscale(0);
	filter: grayscale(0);
}

.rt-thumbnail-slider-thumb-style-1 .swiper-slide-thumb-active .thumb-img img {
	-webkit-filter: grayscale(0);
	filter: grayscale(0);
	opacity: 1;
}

.product-description-box .top-content {
	margin-bottom: 16px;
}

.product-description-box .top-content .title {
	font-weight: 500;
	font-size: 36px;
	line-height: 43px;
}

@media only screen and (max-width: 767px) {
	.product-description-box .top-content .title {
		font-size: 30px;
		line-height: 36px;
	}
}

@media only screen and (max-width: 479px) {
	.product-description-box .top-content .title {
		font-size: 24px;
		line-height: 30px;
	}
}

.product-description-box .top-content .price {
	font-family: var(--font-title);
	font-weight: 700;
	font-size: 24px;
	line-height: 29px;
	color: var(--color-secondary);
}

@media only screen and (max-width: 479px) {
	.product-description-box .top-content .price {
		font-size: 20px;
		line-height: 25px;
	}
}

.product-description-box .action-content {
	margin-bottom: 30px;
	position: relative;
}

@media only screen and (max-width: 320px) {
	.product-description-box .action-content {
		margin-bottom: 20px;
	}
}

.product-description-box .action-content .size-area {
	margin-bottom: 30px;
}

.product-description-box .action-content .size-area .size-type {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 10px;
}

.product-description-box .action-content .size-area .size-type li {
	font-size: 18px;
	line-height: 23px;
	color: #979797;
}

.product-description-box .action-content .size-area .size-type .guide .size-table {
	top: 30px;
}

.product-description-box .action-content .size-area .list-wrap .rt-check-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.product-description-box .action-content .size-area .list-wrap .rt-check-list .item .radio-custom {
	opacity: 0;
	position: absolute;
}

.product-description-box .action-content .cart-box-area {
	margin-bottom: 30px;
}

.product-description-box .action-content .cart-box-area .label {
	font-size: 18px;
	line-height: 23px;
	color: #979797;
	margin-bottom: 10px;
}

.product-description-box .action-content .cart-box-area .rt-action-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 5px;
}

.product-description-box .action-content .cart-box-area .rt-action-list li .quantity-box.style-1 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border: 1px solid #d9d9d9;
}

.product-description-box .action-content .cart-box-area .rt-action-list li .quantity-box.style-1 .quantity-btn.quantity-plus,
.product-description-box .action-content .cart-box-area .rt-action-list li .quantity-box.style-1 .quantity-minus {
	font-family: var(--font-title);
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 5px 10px;
	border: 1px solid #dddddd;
	background-color: transparent;
	font-weight: 700;
	font-size: 16px;
	line-height: 19px;
	color: var(--color-secondary);
	border: 0;
}

.product-description-box .action-content .cart-box-area .rt-action-list li .quantity-box.style-1 .quantity-btn.quantity-plus:focus,
.product-description-box .action-content .cart-box-area .rt-action-list li .quantity-box.style-1 .quantity-minus:focus {
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.product-description-box .action-content .cart-box-area .rt-action-list li .quantity-box.style-1 .quantity-input {
	border: 0;
	border-radius: 0;
	font-family: var(--font-title);
	font-weight: 700;
	font-size: 16px;
	line-height: 19px;
	color: var(--color-secondary);
	height: 40px;
	width: 40px;
}

.product-description-box .action-content .cart-box-area .rt-action-list li .quantity-box.style-1 .quantity-input:focus {
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.product-description-box .action-content .cart-box-area .rt-action-list .cart-btn a {
	background-color: var(--color-primary);
	font-family: var(--font-title);
	font-weight: 600;
	font-size: 15px;
	line-height: 18px;
	color: #FFFFFF;
	display: inline-block;
	text-align: center;
	padding: 12px 30px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	border: 1px solid var(--color-primary);
	letter-spacing: 0.1em;
	position: relative;
	z-index: 1;
}

.product-description-box .action-content .cart-box-area .rt-action-list .cart-btn a::after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 100%;
	width: 0%;
	height: 100%;
	background-color: var(--color-secondary);
	z-index: -1;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

.product-description-box .action-content .cart-box-area .rt-action-list .cart-btn a:hover {
	color: var(--color-white);
	border-color: var(--color-secondary);
}

.product-description-box .action-content .cart-box-area .rt-action-list .cart-btn a:hover::after {
	visibility: visible;
	opacity: 1;
	right: 0%;
	-webkit-transition: width 0.4s ease;
	transition: width 0.4s ease;
	width: 100%;
}

.product-description-box .action-content .cart-box-area .rt-action-list .circle-btn a {
	background-color: var(--color-secondary);
	font-family: var(--font-title);
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 40px;
	width: 35px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
}

.product-description-box .action-content .cart-box-area .rt-action-list .circle-btn a:hover {
	background-color: var(--color-primary);
}

.product-description-box .action-content .cart-box-area .rt-action-list .circle-btn a:hover i {
	-webkit-animation: toBottomFromTop 0.5s forwards;
	animation: toBottomFromTop 0.5s forwards;
}

.product-description-box .action-content .cart-box-area .rt-action-list .circle-btn a i {
	font-weight: 600;
	font-size: 15px;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.product-description-box .bottom-content ul li {
	font-size: 16px;
	line-height: 21px;
	color: #898989;
	margin-bottom: 10px;
}

.product-description-box .bottom-content ul li:last-child {
	margin-bottom: 0;
}

.product-description-box .bottom-content ul li span {
	color: var(--color-secondary);
}

.single-product-description-list {
	margin: 0;
	padding: 0;
	padding-top: 10px;
}

.single-product-description-list li {
	font-weight: 400;
	font-size: 15px;
	line-height: 24px;
	color: #7E7E7E;
	display: block;
	margin-bottom: 10px;
}

.single-product-description-list li:last-child {
	margin-bottom: 0;
}

.single-product-description-list li i {
	margin-left: 10px;
	font-size: 18px;
	color: #12DA4A;
}

.inner-page-banner-wrap {
	background: #FFF0F3;
	padding: 100px 0px 100px 0px;
}

.inner-page-banner-wrap .breadcrumb-box-1 .breadcrumb {
	margin-bottom: 80px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.inner-page-banner-wrap .breadcrumb-box-1 .breadcrumb .breadcrumb-item {
	color: #6a6a6a;
}

.inner-page-banner-wrap .breadcrumb-box-1 .breadcrumb .breadcrumb-item:first-child:before {
	display: none;
}

.inner-page-banner-wrap .breadcrumb-box-1 .breadcrumb .breadcrumb-item a {
	color: #6a6a6a;
}

.inner-page-banner-wrap .breadcrumb-box-1 .breadcrumb .breadcrumb-item a:hover {
	color: var(--color-primary);
}

.inner-page-banner-wrap .breadcrumb-box-1 .breadcrumb .breadcrumb-item:before {
	color: #6a6a6a;
}

.inner-page-banner-content .main-breadcrumb {
	margin-bottom: 5px;
}

.inner-page-banner-content .main-breadcrumb,
.inner-page-banner-content .main-breadcrumb a,
.inner-page-banner-content .main-breadcrumb .dvdr {
	color: #fff;
}

.inner-page-banner-content .main-breadcrumb a {
	font-weight: 700;
}

.main-breadcrumb .dvdr {
	padding: 0 10px;
	font-size: 0.625rem;
	line-height: 0;
}

.inner-page-banner-content .banner-title {
	font-size: 30px;
	line-height: 1.23;
	color: var(--color-white);
	margin-bottom: 0;
}

.inner-page-banner-wrap .product-wrapper-slider-2 {
	position: relative;
}

@media only screen and (max-width: 1199px) {
	.inner-page-banner-wrap .product-wrapper-slider-2 .product-img-area-1 {
		margin-bottom: 50px;
	}
}

@media screen and (min-width: 1200px) {
	.inner-page-banner-wrap .product-wrapper-slider-2 .product-img-area-1 .item-img {
		margin-right: 150px;
	}
}

.inner-page-banner-wrap .product-wrapper-slider-2 .product-img-area-1 .item-img img {
	cursor: pointer;
}

.inner-page-banner-wrap .inner-page-banner {
	position: relative;
}

.inner-page-banner-wrap .inner-page-banner .favourite-area {
	position: absolute;
	top: 0;
	left: 0;
}

@media only screen and (max-width: 767px) {
	.inner-page-banner-wrap .inner-page-banner .favourite-area {
		left: -85px;
	}
}

@media only screen and (max-width: 575px) {
	.inner-page-banner-wrap .inner-page-banner .favourite-area {
		display: none;
	}
}

.inner-page-banner-wrap .inner-page-banner .favourite-area a {
	width: 60px;
	height: 60px;
	background: #F53311;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 50%;
}

.inner-page-banner-wrap .inner-page-banner .favourite-area a:hover i {
	-webkit-animation: toBottomFromTop 0.5s forwards;
	animation: toBottomFromTop 0.5s forwards;
}

.inner-page-banner-wrap .inner-page-banner .favourite-area a i {
	color: var(--color-white);
	font-size: 20px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.inner-page-banner-wrap .inner-page-banner .bottom-area {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	position: relative;
}

.inner-page-banner-wrap .inner-page-banner .bottom-area .item-social:hover .social-item .social-link {
	background-color: var(--color-primary);
}

.inner-page-banner-wrap .inner-page-banner .bottom-area .item-social:hover .social-item .social-link i {
	color: var(--color-white);
}

.inner-page-banner-wrap .inner-page-banner .bottom-area .item-social:hover .social-item .team-social-dropdown {
	visibility: visible;
	opacity: 1;
}

.inner-page-banner-wrap .inner-page-banner .bottom-area .item-social:hover .social-item .team-social-dropdown .social-item:nth-child(1) {
	-webkit-transform: translateX(0);
	transform: translateX(0);
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
}

.inner-page-banner-wrap .inner-page-banner .bottom-area .item-social:hover .social-item .team-social-dropdown .social-item:nth-child(2) {
	-webkit-transform: translateX(0);
	transform: translateX(0);
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
}

.inner-page-banner-wrap .inner-page-banner .bottom-area .item-social:hover .social-item .team-social-dropdown .social-item:nth-child(3) {
	-webkit-transform: translateX(0);
	transform: translateX(0);
	-webkit-animation-delay: 0.5s;
	animation-delay: 0.5s;
}

.inner-page-banner-wrap .inner-page-banner .bottom-area .item-social:hover .social-item .team-social-dropdown .social-item:nth-child(4) {
	-webkit-transform: translateX(0);
	transform: translateX(0);
	-webkit-animation-delay: 0.6s;
	animation-delay: 0.6s;
}

.inner-page-banner-wrap .inner-page-banner .bottom-area .item-social:hover .social-item .team-social-dropdown .social-item:nth-child(4) {
	-webkit-transform: translateX(0);
	transform: translateX(0);
	-webkit-animation-delay: 0.7s;
	animation-delay: 0.7s;
}

.inner-page-banner-wrap .inner-page-banner .bottom-area .item-social .social-item {
	position: relative;
	margin: 0;
	padding: 0;
}

.inner-page-banner-wrap .inner-page-banner .bottom-area .item-social .social-item .social-link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background-color: var(--color-white);
	color: var(--color-secondary);
	-webkit-box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 479px) {
	.inner-page-banner-wrap .inner-page-banner .bottom-area .item-social .social-item .social-link {
		height: 50px;
		width: 50px;
	}
}

.inner-page-banner-wrap .inner-page-banner .bottom-area .item-social .social-item .social-link i {
	font-size: 20px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 479px) {
	.inner-page-banner-wrap .inner-page-banner .bottom-area .item-social .social-item .social-link i {
		font-size: 16px;
	}
}

.inner-page-banner-wrap .inner-page-banner .bottom-area .item-social .social-item .team-social-dropdown {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	right: 0;
	top: 0;
	visibility: hidden;
	opacity: 0;
	-webkit-transform: translateX(0);
	transform: translateX(0);
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	position: absolute;
	bottom: 0;
	right: 0;
}

.inner-page-banner-wrap .inner-page-banner .bottom-area .item-social .social-item .team-social-dropdown .social-item {
	margin-left: 4px;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.inner-page-banner-wrap .inner-page-banner .bottom-area .item-social .social-item .team-social-dropdown .social-item:nth-child(1) {
	-webkit-transform: translateX(0);
	transform: translateX(0);
}

.inner-page-banner-wrap .inner-page-banner .bottom-area .item-social .social-item .team-social-dropdown .social-item:nth-child(2) {
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
}

.inner-page-banner-wrap .inner-page-banner .bottom-area .item-social .social-item .team-social-dropdown .social-item:nth-child(3) {
	-webkit-transform: translateX(200%);
	transform: translateX(200%);
}

.inner-page-banner-wrap .inner-page-banner .bottom-area .item-social .social-item .team-social-dropdown .social-item:nth-child(4) {
	-webkit-transform: translateX(300%);
	transform: translateX(300%);
}

.inner-page-banner-wrap .inner-page-banner .bottom-area .item-social .social-item .team-social-dropdown .social-item:nth-child(5) {
	-webkit-transform: translateX(400%);
	transform: translateX(400%);
}

.inner-page-banner-wrap .inner-page-banner .bottom-area .item-social .social-item .team-social-dropdown .social-item:nth-child(6) {
	-webkit-transform: translateX(500%);
	transform: translateX(500%);
}

.inner-page-banner-wrap .inner-page-banner .bottom-area .rt-ba-button .button {
	font-weight: 500;
	font-size: 16px;
	line-height: 21px;
	color: #868686;
	display: inline-block;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.inner-page-banner-wrap .inner-page-banner .bottom-area .rt-ba-button .button:hover {
	color: var(--color-primary);
}

.inner-page-banner-wrap .inner-page-banner .bottom-area .rt-ba-button .active {
	color: var(--color-secondary);
}

.product-wrapper-slider-2 .swiper-slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

@media only screen and (max-width: 991px) {
	.product-description-box.style-3 {
		margin-bottom: 30px;
	}
}

.product-description-box.style-3 .top-content {
	margin-bottom: 16px;
}

.product-description-box.style-3 .top-content .title {
	font-weight: 400;
	font-size: 40px;
	line-height: 48px;
	margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
	.product-description-box.style-3 .top-content .title {
		font-size: 30px;
		line-height: 36px;
	}
}

@media only screen and (max-width: 479px) {
	.product-description-box.style-3 .top-content .title {
		font-size: 24px;
		line-height: 30px;
	}
}

.product-description-box.style-3 .top-content p {
	line-height: 20px;
}

.product-description-box.style-3 .top-content .review {
	margin-bottom: 20px;
}

.product-description-box.style-3 .top-content .review ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 3px;
}

.product-description-box.style-3 .top-content .review ul li {
	font-size: 15px;
	line-height: 15px;
	color: #F1970F;
}

.product-description-box.style-3 .top-content .review ul .content {
	font-family: var(--font-title);
	font-weight: 400;
	font-size: 15px;
	line-height: 18px;
	color: #161F38;
	margin-right: 10px;
}

.product-description-box.style-3 .top-content .price {
	font-family: var(--color-secondary);
	font-weight: 500;
	font-size: 30px;
	line-height: 36px;
	color: var(--color-secondary);
}

.product-description-box.style-3 .top-content .price .old-rate {
	font-weight: 400;
	font-size: 20px;
	margin-left: 10px;
	text-decoration: line-through;
}

.product-description-box.style-3 .action-content {
	margin-bottom: 30px;
}

.product-description-box.style-3 .action-content .cart-box-area {
	margin-bottom: 30px;
}

.product-description-box.style-3 .action-content .cart-box-area .rt-action-list li .quantity-box.style-1 .quantity-btn.quantity-plus,
.product-description-box.style-3 .action-content .cart-box-area .rt-action-list li .quantity-box.style-1 .quantity-minus {
	background-color: transparent;
}

.product-description-box.style-3 .action-content .cart-box-area .rt-action-list li .quantity-box.style-1 .quantity-btn.quantity-plus:focus,
.product-description-box.style-3 .action-content .cart-box-area .rt-action-list li .quantity-box.style-1 .quantity-minus:focus {
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.product-description-box.style-3 .action-content .cart-box-area .rt-action-list li .quantity-box.style-1 .quantity-input {
	background-color: transparent;
}

.product-description-box.style-3 .action-content .cart-box-area .rt-action-list li .quantity-box.style-1 .quantity-input:focus {
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.product-description-box.style-3 .bottom-content ul li:last-child {
	margin-bottom: 0;
}

.product-description-box.style-3 .bottom-content ul li span {
	color: var(--color-secondary);
}

.product-description-box.style-3 .bottom-content ul .tag a {
	color: var(--color-secondary);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.product-description-box.style-3 .bottom-content ul .tag a:hover {
	color: var(--color-primary);
}

.rt-thumbnail-slider-thumb-style-2 {
	height: 442px;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 0;
}

@media screen and (max-width: 1199px) {
	.rt-thumbnail-slider-thumb-style-2 {
		height: auto;
		float: inherit;
		margin-right: 0;
		width: auto;
		position: inherit;
		margin-top: 20px;
	}
}

.rt-thumbnail-slider-thumb-style-2 .thumb-img {
	cursor: pointer;
	height: 100%;
}

.rt-thumbnail-slider-thumb-style-2 .thumb-img img {
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

@media only screen and (max-width: 1199px) {
	.rt-thumbnail-slider-thumb-style-2 .thumb-img img {
		width: 100%;
	}
}

.rt-thumbnail-slider-thumb-style-2 .swiper-slide-thumb-active .thumb-img {
	border: 3px solid #fff;
}

.product-wrapper-slider-3 .product-img-area-1 .item-img {
	text-align: center;
	background-color: #E7EEFF;
	padding: 20px;
	margin-bottom: 10px;
}

.product-wrapper-slider-3 .product-img-area-1 .item-img img {
	cursor: pointer;
}

@media only screen and (max-width: 1199px) {
	.product-wrapper-slider-3 .thumb-img img {
		width: 100%;
	}
}

@media only screen and (max-width: 991px) {
	.product-description-box.style-4 {
		margin-top: 30px;
	}
}

.product-description-box.style-4 .top-content {
	margin-bottom: 30px;
	border-bottom: 2px solid #e8e8e8;
	padding-bottom: 20px;
}

@media screen and (min-width: 1200px) {
	.product-description-box.style-4 .top-content .title {
		width: 400px;
	}
}

.product-description-box.style-4 .top-content .tag {
	line-height: 24px;
	margin-bottom: 10px;
	display: block;
	font-size: 15px;
}

.product-description-box.style-4 .top-content .price {
	margin-bottom: 10px;
}

.product-description-box.style-4 .top-content .status {
	font-size: 15px;
}

.product-description-box.style-4 .top-content .status .stock {
	font-weight: 700;
	color: #0AC11C;
	font-size: 15px;
}

.product-description-box.style-4 .action-content {
	margin-bottom: 30px;
	border-bottom: 2px solid #e8e8e8;
	padding-bottom: 20px;
}

.product-description-box.style-4 .action-content .size-area {
	margin-bottom: 30px;
}

.product-description-box.style-4 .action-content .size-area .list-wrap .rt-check-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.product-description-box.style-4 .action-content .size-area .list-wrap .rt-check-list .check-title {
	font-size: 15px;
	line-height: 24px;
	margin-left: 10px;
}

.product-description-box.style-4 .action-content .size-area .list-wrap .rt-check-list .item .radio-custom {
	opacity: 0;
	position: absolute;
}

.product-description-box.style-4 .action-content .cart-box-area {
	margin-bottom: 10px;
}

.product-description-box.style-4 .action-content .cart-box-area .rt-action-list {
	margin-bottom: 30px;
}

.product-description-box.style-4 .action-content .cart-box-area .rt-action-list li .quantity-box.style-1 .quantity-btn.quantity-plus:focus,
.product-description-box.style-4 .action-content .cart-box-area .rt-action-list li .quantity-box.style-1 .quantity-minus:focus {
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.product-description-box.style-4 .action-content .cart-box-area .rt-action-list li .quantity-box.style-1 .quantity-input:focus {
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.product-description-box.style-4 .action-content .button-list ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 25px;
}

.rt-thumbnail-slider-thumb-style-3 .thumb-img {
	cursor: pointer;
	height: 100%;
}

.rt-thumbnail-slider-thumb-style-3 .thumb-img img {
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.rt-thumbnail-slider-thumb-style-3 .swiper-slide-thumb-active .thumb-img {
	border: 1px solid #000;
}

.product-wrapper-slider-4 .item-img img {
	opacity: 0.5;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.product-wrapper-slider-4 .item-img.active img {
	opacity: 1;
}

@media only screen and (max-width: 991px) {
	.product-wrapper-slider-4 .item-img img {
		width: 100%;
	}
}

@media only screen and (max-width: 767px) {
	.product-wrapper-slider-4 .style-1 {
		margin-top: 24px;
	}
}

.product-description-box.style-5 .top-content {
	margin-bottom: 30px;
	border-bottom: 2px solid #e8e8e8;
	padding-bottom: 20px;
}

@media screen and (min-width: 1200px) {
	.product-description-box.style-5 .top-content .title {
		width: 400px;
	}
}

.product-description-box.style-5 .top-content .review {
	margin-bottom: 20px;
}

.product-description-box.style-5 .top-content .review ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 3px;
}

.product-description-box.style-5 .top-content .review ul li {
	font-size: 15px;
	line-height: 15px;
	color: #F1970F;
}

.product-description-box.style-5 .top-content .review ul .content {
	font-family: var(--font-title);
	font-weight: 400;
	font-size: 15px;
	line-height: 18px;
	color: #161F38;
	margin-right: 10px;
}

.product-description-box.style-5 .top-content .tag {
	line-height: 24px;
	margin-bottom: 10px;
	display: block;
	font-size: 15px;
}

.product-description-box.style-5 .top-content .price {
	margin-bottom: 10px;
}

.product-description-box.style-5 .top-content .status {
	font-size: 15px;
}

.product-description-box.style-5 .top-content .status .stock {
	font-weight: 700;
	color: #0AC11C;
	font-size: 15px;
}

.product-description-box.style-5 .action-content {
	margin-bottom: 30px;
	border-bottom: 2px solid #e8e8e8;
	padding-bottom: 20px;
}

.product-description-box.style-5 .action-content .size-area {
	margin-bottom: 30px;
}

.product-description-box.style-5 .action-content .size-area .list-wrap .rt-check-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.product-description-box.style-5 .action-content .size-area .list-wrap .rt-check-list .check-title {
	font-size: 15px;
	line-height: 24px;
	margin-left: 10px;
}

.product-description-box.style-5 .action-content .size-area .list-wrap .rt-check-list .item .radio-custom {
	opacity: 0;
	position: absolute;
}

.product-description-box.style-5 .action-content .cart-box-area {
	margin-bottom: 10px;
}

.product-description-box.style-5 .action-content .cart-box-area .rt-action-list {
	margin-bottom: 30px;
}

.product-description-box.style-5 .action-content .cart-box-area .rt-action-list li .quantity-box.style-1 .quantity-btn.quantity-plus:focus,
.product-description-box.style-5 .action-content .cart-box-area .rt-action-list li .quantity-box.style-1 .quantity-minus:focus {
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.product-description-box.style-5 .action-content .cart-box-area .rt-action-list li .quantity-box.style-1 .quantity-input:focus {
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.product-description-box.style-5 .action-content .button-list ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 25px;
}

.product-description-box.style-5 .action-content .button-list ul li a {
	display: inline-block;
	font-weight: 500;
	font-size: 15px;
	line-height: 20px;
	color: #979797;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
}

.product-description-box.style-5 .action-content .button-list ul li a:hover {
	color: var(--color-primary);
}

.product-description-box.style-5 .action-content .button-list ul li a:hover i {
	-webkit-animation: toBottomFromTop 0.5s forwards;
	animation: toBottomFromTop 0.5s forwards;
}

.product-description-box.style-5 .action-content .button-list ul li a i {
	margin-left: 5px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.product-description-box.style-5 .bottom-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 30px;
	border-bottom: 2px solid #e8e8e8;
	padding-bottom: 20px;
}

.product-description-box.style-5 .bottom-content ul li {
	font-size: 15px;
}

.product-description-box.style-5 .bottom-content ul li:last-child {
	margin-bottom: 0;
}

.product-description-box.style-5 .bottom-content ul li span {
	color: var(--color-secondary);
	font-size: 15px;
}

.product-description-box.style-5 .bottom-content ul .tag a {
	color: var(--color-secondary);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	font-size: 15px;
}

.product-description-box.style-5 .bottom-content ul .tag a:hover {
	color: var(--color-primary);
}

.product-description-box.style-5 .bottom-content .item-social ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 15px;
}

.product-description-box.style-5 .bottom-content .item-social ul li a {
	font-size: 15px;
	line-height: 14px;
	color: #AEAEAE;
	display: inline-block;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.product-description-box.style-5 .bottom-content .item-social ul li a:hover {
	color: var(--color-primary);
}

.product-description-box.style-5 .bottom-content .item-social ul li a:hover i {
	-webkit-animation: toBottomFromTop 0.5s forwards;
	animation: toBottomFromTop 0.5s forwards;
}

.product-description-box.style-5 .bottom-content .item-social ul li a i {
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.footer-1 {
	background-color: var(--color-secondary);
}

.footer-1 .footer-top {
	padding: 80px 0px;
	border-bottom: 1px solid #3C3C3D;
}

@media only screen and (max-width: 991px) {
	.footer-1 .footer-top {
		padding: 50px 0;
	}
}

@media only screen and (max-width: 991px) {
	.footer-1 .footer-top .top-layout-1 {
		margin-bottom: 24px;
	}
}

@media only screen and (max-width: 991px) {
	.footer-1 .footer-top .top-layout-1 {
		text-align: center;
	}
}

.footer-1 .footer-top .top-layout-1 .item-title {
	font-family: var(--font-title);
	font-weight: 400;
	font-size: 30px;
	line-height: 36px;
	color: var(--color-white);
}

@media only screen and (max-width: 1199px) {
	.footer-1 .footer-top .top-layout-1 .item-title {
		margin-bottom: 15px;
	}
}

.footer-1 .footer-top .top-layout-1 .item-title span {
	color: var(--color-primary);
	font-weight: 500;
}

.footer-1 .footer-top .top-layout-1 p {
	color: #b7b7b7;
	margin-bottom: 0;
	font-size: 15px;
	font-weight: 400;
	line-height: 24px;
}

@media (min-width: 1200px) {
	.footer-style-1 .footer-1 .footer-top .top-layout-1 p {
		padding-left: 140px;
	}
}

@media only screen and (max-width: 320px) {
	.footer-1 .footer-top .top-layout-2 .input-group {
		display: block;
		text-align: center;
	}
}

.footer-1 .footer-top .top-layout-2 .input-group .form-control {
	height: 50px;
	color: var(--color-white);
	border: 1px solid #737373;
	background-color: transparent;
	border-radius: 0;
	margin-left: 10px;
}

.frm-fluent-form .ff-t-container.jabee-subs-form-1 {
	gap: 10px !important;
}

.footer-newsletter .frm-fluent-form .ff-t-container.jabee-subs-form-1 {
	gap: 0 !important;
}

.jabee-subs-form-1 .ff-t-cell.ff-t-column-1 {
	flex-basis: 67% !important;
}

.jabee-subs-form-1 .ff-t-cell.ff-t-column-2 {
	flex-basis: 29% !important;
}

.footer-newsletter .jabee-subs-form-1 .ff-t-cell.ff-t-column-1,
.footer-newsletter .jabee-subs-form-1 .ff-t-cell.ff-t-column-2 {
	flex-basis: 100% !important;
}

@media (max-width: 547px) {
	.jabee-subs-form-1 .ff-t-cell.ff-t-column-1,
	.jabee-subs-form-1 .ff-t-cell.ff-t-column-2 {
		flex-basis: 100% !important;
	}
}

.frm-fluent-form .jabee-subs-form-1 .ff-t-cell .ff_submit_btn_wrapper_custom {
	margin-top: 0;
}

.fluentform .jabee-subs-form-1 .ff-el-group {
	margin-bottom: 0;
}

@media only screen and (max-width: 320px) {
	.footer-1 .footer-top .top-layout-2 .input-group .form-control {
		width: 100%;
	}
}

.footer-1 .footer-top .top-layout-2 .input-group .form-control:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
	outline: 0;
	border-color: var(--color-white);
}

.footer-1 .footer-top .top-layout-2 .input-group .form-control::-webkit-input-placeholder {
	color: #868686;
}

.footer-1 .footer-top .top-layout-2 .input-group .form-control::-moz-placeholder {
	color: #868686;
}

.footer-1 .footer-top .top-layout-2 .input-group .form-control:-ms-input-placeholder {
	color: #868686;
}

.footer-1 .footer-top .top-layout-2 .input-group .form-control::-ms-input-placeholder {
	color: #868686;
}

.footer-1 .footer-top .top-layout-2 .input-group .form-control::placeholder {
	color: #868686;
}

.footer-1 .footer-top .top-layout-2 .input-group .btn-outline-secondary {
	height: 50px;
	color: var(--color-white);
	font-family: var(--font-title);
	font-weight: 700;
	font-size: 15px;
	line-height: 24px;
	letter-spacing: 0.1em;
	text-align: center;
	display: inline-block;
	background-color: var(--color-primary);
	border-radius: 0;
	border: 0;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	padding: 11px 25px;
	margin-bottom: 0;
	text-transform: uppercase;
}

@media (max-width: 991px) {
	.footer-1 .footer-top .top-layout-2 .input-group .btn-outline-secondary {
		width: 100%;
	}
}

@media (min-width: 1200px) {
	.footer-1 .footer-top .top-layout-2 .input-group .btn-outline-secondary {
		width: 100%;
	}
}

@media only screen and (max-width: 320px) {
	.footer-1 .footer-top .top-layout-2 .input-group .btn-outline-secondary {
		margin-top: 24px;
	}
}

.footer-1 .footer-top .top-layout-2 .input-group .btn-outline-secondary:hover {
	color: var(--color-primary);
	background-color: var(--color-white);
	opacity: 1;
}

.footer-1 .footer-top .top-layout-2 .input-group .btn-outline-secondary:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
	outline: 0;
}

.footer-1 .footer-middle {
	padding: 80px 0px 30px;
	border-bottom: 1px solid #3C3C3D;
}

@media only screen and (max-width: 991px) {
	.footer-1 .footer-middle {
		padding: 45px 0px 15px;
	}
}

@media (min-width: 992px) {
	.footer-1 .footer-middle .footer-widget {
		padding-bottom: 50px
	}
}

@media only screen and (max-width: 767px) {
	.footer-1 .footer-middle .footer-logo-area {
		margin-bottom: 35px;
	}
}

.footer-1 .footer-middle .footer-logo-area .logo-light,
.footer-1 .footer-middle .footer-logo-area .logo-dark {
	margin-bottom: 35px;
}

.footer-3 .footer-middle .footer-logo-area .logo-light,
.footer-3 .footer-middle .footer-logo-area .logo-dark {
	margin-bottom: 15px;
}

.footer-1 .footer-middle .footer-logo-area .logo-dark {
	display: none;
}

.footer-2 .footer-middle .footer-logo-area .logo-dark,
.footer-3 .footer-middle .footer-logo-area .logo-dark {
	display: block;
}

.footer-2 .footer-middle .footer-logo-area .logo-light,
.footer-3 .footer-middle .footer-logo-area .logo-light {
	display: none;
}

.footer-1 .footer-middle .footer-logo-area .title-area .title {
	font-family: var(--font-title);
	font-weight: 600;
	font-size: 22px;
	line-height: 24px;
	color: #FBFBFB;
}

.footer-1 .footer-middle {
	color: #BBB6B6;
	font-size: 15px;
}

.footer-1 .footer-middle .footer-logo-area .item-social .social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-1 .footer-middle .footer-logo-area .item-social .social li a {
	width: 40px;
	height: 40px;
	background: transparent;
	color: #7d7d7d;
	border: 1px solid #7d7d7d;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 50%;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.footer-1 .footer-middle .footer-logo-area .item-social .social li a:hover {
	border-color: var(--color-primary);
	background-color: var(--color-primary);
	padding: 0;
}

.footer-1 .footer-middle .footer-logo-area .item-social .social li a:hover i {
	color: var(--color-white);
	-webkit-animation: toBottomFromTop 0.5s forwards;
	animation: toBottomFromTop 0.5s forwards;
}

.footer-1 .footer-middle .footer-logo-area .item-social .social li a i {
	font-size: 15px;
	color: #7d7d7d;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.footer-1 .footer-middle .footer-logo-area .item-social .social .fb-bg a:hover {
	background-color: #2e78d3;
	border-color: #2e78d3;
}

.footer-1 .footer-middle .footer-logo-area .item-social .social .twit-bg a:hover {
	background-color: #37b7f9;
	border-color: #37b7f9;
}

.footer-1 .footer-middle .footer-logo-area .item-social .social .link-bg a:hover {
	background-color: #2e78d3;
	border-color: #2e78d3;
}

.footer-1 .footer-middle .footer-logo-area .item-social .social .instra-bg a:hover {
	background-color: #c32aa3;
	border-color: #c32aa3;
}

.footer-1 .footer-middle .footer-logo-area .item-social .social .pinterest-bg a:hover {
	background-color: #ff1244;
	border-color: #ff1244;
}

.footer-widget ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

@media only screen and (max-width: 1199px) {
	.footer-1 .footer-middle .footer-widget {
		padding-right: 30px;
		margin-bottom: 30px;
	}
}

@media only screen and (max-width: 991px) {
	.footer-1 .footer-middle .footer-widget {
		padding-right: 0px;
		margin-bottom: 30px;
	}
}

.footer-1 .footer-middle .footer-widget .menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-1 .footer-middle .footer-widget .menu li {
	display: block;
}

.footer-1 .footer-middle .footer-widget .menu li a,
.footer-1 .footer-middle .footer-widget ul li a {
	font-weight: 400;
	font-size: 15px;
	line-height: 40px;
	color: #BBB6B6;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	padding-right: 0;
}

.footer-1 .footer-middle .footer-widget .menu li a:hover,
.footer-1 .footer-middle .footer-widget ul li a:hover {
	color: var(--color-primary);
	padding-right: 5px;
}

.footer-1 .footer-middle .footer-widget.widget_recent_comments ul li,
.footer-1 .footer-middle .footer-widget.widget_rss ul li {
	margin-bottom: 8px;
	padding-bottom: 8px;
}

.footer-1 .footer-middle .footer-widget.widget_recent_comments ul li:last-child,
.footer-1 .footer-middle .footer-widget.widget_rss ul li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
}

.footer-1 .footer-middle .footer-widget.widget_recent_comments ul li a,
.footer-1 .footer-middle .footer-widget.widget_rss ul li a {
	line-height: 24px;
	display: inline;
}

.footer-1 .footer-middle .footer-widget.widget_recent_comments ul li a:hover {
	padding-right: 0;
}

.footer-1 .footer-middle .footer-widget ul li ul.children,
.footer-1 .footer-middle .footer-widget ul li ul.sub-menu {
	padding-right: 10px;
}

.footer-1 .footer-middle .footer-widget.widget_recent_comments
.footer-1 .footer-middle .footer-newsletter .input-group .form-control {
	height: 40px;
	color: var(--color-white);
	border: 1px solid #cacaca;
	background-color: transparent;
	border-radius: 0;
	margin-left: 10px;
	color: var(--color-secondary);
	color: #adadad;
	font-size: 13px;
}

@media only screen and (max-width: 320px) {
	.footer-1 .footer-middle .footer-newsletter .input-group .form-control {
		width: 100%;
	}
}

.footer-1 .footer-middle .footer-newsletter .input-group .form-control:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
	outline: 0;
}

.footer-newsletter.jabee-subs-form-2 .btn.btn-outline-secondary,
.footer-1 .footer-middle .footer-newsletter .input-group .btn-outline-secondary {
	height: 40px;
	width: 116px;
	color: var(--color-white);
	font-weight: 400;
	font-size: 15px;
	line-height: 24px;
	text-align: center;
	display: inline-block;
	background-color: var(--color-primary);
	border-radius: 4px 4px 4px 4px !important;
	border: 0;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.frm-fluent-form .ff-t-container.jabee-subs-form-2 {
	gap: 10px !important;
}

.frm-fluent-form .jabee-subs-form-2 .ff-t-cell {
	display: inline-block;
}

.footer-newsletter.jabee-subs-form-2 .btn.btn-outline-secondary:hover,
.footer-1 .footer-middle .footer-newsletter .input-group .btn-outline-secondary:hover {
	color: var(--color-white);
	background-color: var(--color-primary);
	opacity: 1;
}

.footer-newsletter.jabee-subs-form-2 .btn.btn-outline-secondary:focus,
.footer-1 .footer-middle .footer-newsletter .input-group .btn-outline-secondary:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
	outline: 0;
}

@media screen and (max-width: 1200px) {
	.footer-1 .footer-middle .footer-newsletter-2 {
		margin-bottom: 35px;
	}
}

.footer-1 .footer-middle .footer-newsletter-2 .input-group .form-control {
	height: 40px;
	color: var(--color-white);
	border: 1px solid #444;
	background-color: transparent;
	border-radius: 0;
	margin-left: 10px;
	color: var(--color-secondary);
}

.footer-1 .footer-middle .footer-newsletter-2 .input-group .form-control:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
	outline: 0;
}

.footer-1 .footer-middle .footer-newsletter-2 .input-group .form-control::-webkit-input-placeholder {
	color: #444;
	font-size: 13px;
}

.footer-1 .footer-middle .footer-newsletter-2 .input-group .form-control::-moz-placeholder {
	color: #444;
	font-size: 13px;
}

.footer-1 .footer-middle .footer-newsletter-2 .input-group .form-control:-ms-input-placeholder {
	color: #444;
	font-size: 13px;
}

.footer-1 .footer-middle .footer-newsletter-2 .input-group .form-control::-ms-input-placeholder {
	color: #444;
	font-size: 13px;
}

.footer-1 .footer-middle .footer-newsletter-2 .input-group .form-control::placeholder {
	color: #444;
	font-size: 13px;
}

.footer-style-4 .footer-middle .footer-newsletter.jabee-subs-form-2 .input-group .btn-outline-secondary,
.footer-1 .footer-middle .footer-newsletter-2 .input-group .btn-outline-secondary {
	background-color: transparent;
	border: 1px solid var(--color-secondary);
	color: var(--color-secondary);
}

.footer-style-4 .footer-middle .footer-newsletter.jabee-subs-form-2 .input-group .btn-outline-secondary {
	border-radius: 0 !important;
}

.footer-style-4 .footer-middle .footer-newsletter.jabee-subs-form-2 .input-group .btn-outline-secondary:hover,
.footer-1 .footer-middle .footer-newsletter-2 .input-group .btn-outline-secondary:hover {
	color: var(--color-white);
	background-color: var(--color-primary);
	border-color: var(--color-primary);
}

.footer-1 .footer-middle .footer-newsletter-2 .input-group .btn-outline-secondary:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
	outline: 0;
}

.footer-1 .footer-bottom {
	padding: 15px 0px;
}

@media only screen and (max-width: 767px) {
	.footer-1 .footer-bottom {
		padding: 45px 0px;
	}
}

.footer-1 .footer-bottom .bottom-link ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
	padding: 0;
	margin: 0;
	list-style: none;
}

@media only screen and (max-width: 767px) {
	.footer-1 .footer-bottom .bottom-link ul {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

.footer-1 .footer-bottom .bottom-link ul li:last-child a::after {
	display: none;
}

.footer-1 .footer-bottom .bottom-link ul li a {
	color: #BBB6B6;
	font-size: 15px;
	line-height: 20px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	position: relative;
}

.footer-1 .footer-bottom .bottom-link ul li a:after {
	content: "";
	height: 3px;
	width: 3px;
	background-color: var(--color-white);
	position: absolute;
	top: 50%;
	left: -10px;
	border-radius: 50%;
}

.footer-1 .footer-bottom .bottom-link ul li a:hover {
	color: var(--color-primary);
}

.footer-1 .footer-bottom .footer-text {
	margin-bottom: 0;
	font-size: 15px;
	line-height: 20px;
}

.footer-1 .footer-bottom .text-right .footer-text {
	text-align: left;
}

@media only screen and (max-width: 767px) {
	.footer-1 .footer-bottom .footer-text {
		text-align: center;
		margin-top: 15px;
	}

	.footer-1 .footer-bottom .text-right .footer-text {
		text-align: center;
	}
}

.footer-1 .footer-bottom .footer-text a {
	color: var(--color-body);
}

.footer-1 .footer-bottom .footer-text a:hover {
	color: var(--color-primary);
}

.footer-1.footer-2 {
	background: #fafafa;
}

.footer-2 .footer-top {
	border-bottom: 1px solid #d9d9d9;
}

.footer-2 .footer-top .top-layout-1 .item-title {
	color: var(--color-secondary);
	padding-bottom: 5px;
}

.footer-2 .footer-top .top-layout-1 .item-title span {
	color: var(--color-primary);
}

.footer-2 .footer-top .top-layout-1 p {
	color: var(--color-body);
}

.footer-2 .footer-top .top-layout-2 .input-group .form-control {
	color: var(--color-secondary);
	border: 1px solid #cbcbcb;
	background-color: transparent;
	border-radius: 50px;
	height: 55px;
	padding: 6px 20px;
}

.footer-2 .footer-top .top-layout-2 .input-group .form-control:focus {
	border-color: var(--color-secondary);
}

.footer-2 .footer-top .top-layout-2 .input-group .form-control::-webkit-input-placeholder {
	color: #868686;
}

.footer-2 .footer-top .top-layout-2 .input-group .form-control::-moz-placeholder {
	color: #868686;
}

.footer-2 .footer-top .top-layout-2 .input-group .form-control:-ms-input-placeholder {
	color: #868686;
}

.footer-2 .footer-top .top-layout-2 .input-group .form-control::-ms-input-placeholder {
	color: #868686;
}

.footer-2 .footer-top .top-layout-2 .input-group .form-control::placeholder {
	color: #868686;
}

.footer-2 .footer-top .top-layout-2 .input-group .btn-outline-secondary {
	color: var(--color-white);
	background-color: var(--color-primary);
	padding: 11px 25px;
	border-radius: 50px;
	height: 55px;
	width: 100%;
}

.footer-2 .footer-top .top-layout-2 .input-group .btn-outline-secondary:hover {
	background-color: var(--color-secondary);
	color: var(--color-white);
}

.footer-2 .footer-middle {
	border-bottom: 1px solid #d9d9d9;
}

.footer-2 .footer-middle .footer-logo-area .Logo {
	margin-bottom: 35px;
}

.footer-2 .footer-middle .footer-logo-area .title-area .title {
	color: var(--color-secondary);
}

.footer-2 .footer-middle .footer-logo-area .title-area p {
	color: var(--color-body);
}

@media only screen and (max-width: 1199px) {
	.footer-2 .footer-middle .footer-link {
		padding-right: 0px;
		margin-bottom: 24px;
	}
}

.footer-2 .footer-middle .footer-widget .menu li a {
	color: var(--color-body);
}

.footer-2 .footer-middle .footer-widget .menu li a:hover {
	color: var(--color-primary);
}

.footer-2 .footer-bottom .bottom-link ul li a {
	color: var(--color-body);
}

.footer-2 .footer-bottom .bottom-link ul li a:after {
	background-color: var(--color-body);
}

.footer-2 .footer-bottom .bottom-link ul li a:hover {
	color: var(--color-primary);
}

.footer-2 .footer-bottom .text-right .footer-text a:hover {
	color: var(--color-primary);
}

.footer-1.footer-3 {
	background: var(--color-white);
	border-bottom: 1px solid #d9d9d9;
	border-top: 1px solid #d9d9d9;
}

.footer-3 .footer-top .top-layout-1 .item-title {
	color: var(--color-secondary);
}

.footer-3 .footer-top .top-layout-1 p {
	color: #444444;
}

.footer-3 .footer-top .top-layout-2 .input-group .form-control {
	color: var(--color-secondary);
	border: 1px solid #cbcbcb;
	background-color: transparent;
}

.footer-3 .footer-top .top-layout-2 .input-group .form-control::-webkit-input-placeholder {
	color: #868686;
}

.footer-3 .footer-top .top-layout-2 .input-group .form-control::-moz-placeholder {
	color: #868686;
}

.footer-3 .footer-top .top-layout-2 .input-group .form-control:-ms-input-placeholder {
	color: #868686;
}

.footer-3 .footer-top .top-layout-2 .input-group .form-control::-ms-input-placeholder {
	color: #868686;
}

.footer-3 .footer-top .top-layout-2 .input-group .form-control::placeholder {
	color: #868686;
}

.footer-3 .footer-top .top-layout-2 .input-group .btn-outline-secondary {
	color: var(--color-white);
	background-color: var(--color-primary);
}

.footer-3 .footer-top .top-layout-2 .input-group .btn-outline-secondary:hover {
	background-color: var(--color-secondary);
	color: var(--color-white);
}

.footer-3 .footer-middle {
	border-bottom: 0;
}

.footer-3 .footer-middle .footer-logo-area .Logo {
	margin-bottom: 15px;
}

.footer-3 .footer-middle .footer-logo-area .title-area p {
	color: #444444;
	margin-bottom: 30px;
}

.footer-3 .footer-middle .footer-logo-area .footer-contact {
	margin-bottom: 30px;
}

.footer-3 .footer-middle .footer-logo-area .footer-contact p {
	margin-bottom: 10px;
	color: #444444;
}

.footer-3 .footer-middle .footer-logo-area .footer-contact .item-phn {
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: var(--color-secondary);
	margin-bottom: 7px;
}

.footer-3 .footer-middle .footer-logo-area .footer-contact .item-phn a {
	color: #444444;
}

.footer-3 .footer-middle .footer-logo-area .footer-contact .item-mail {
	margin-bottom: 0;
}

.footer-3 .footer-middle .footer-logo-area .item-social-style-2 .social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-3 .footer-middle .footer-logo-area .item-social-style-2 .social li a {
	color: #444;
	font-weight: 400;
	font-size: 15px;
	line-height: 14px;
	display: inline-block;
	overflow: hidden;
}

.footer-3 .footer-middle .footer-logo-area .item-social-style-2 .social li a i {
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.footer-3 .footer-middle .footer-logo-area .item-social-style-2 .social li a:hover {
	color: var(--color-primary);
	padding-right: 0;
}

.footer-3 .footer-middle .footer-logo-area .item-social-style-2 .social li a:hover i {
	-webkit-animation: toBottomFromTop 0.5s forwards;
	animation: toBottomFromTop 0.5s forwards;
}

@media only screen and (max-width: 1199px) {
	.footer-3 .footer-middle .footer-link {
		padding-right: 0px;
		margin-bottom: 24px;
	}
}

.footer-3 .footer-middle .footer-widget .menu li a,
.footer-3 .footer-middle .footer-link .item-link li a {
	color: #696969;
}

.footer-3 .footer-middle .footer-widget .menu li a:hover,
.footer-3 .footer-middle .footer-link .item-link li a:hover {
	color: var(--color-primary);
}

.jabee-footer-insta-feed div#sbi_images {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
	gap: 3px;
}

.jabee-footer-insta-feed #sbi_images .sbi_item {
	flex: 32.67%;
}

@media only screen and (max-width: 1199px) {
	.footer-3 .footer-middle .footer-newsletter .input-group {
		display: block;
	}
}

@media only screen and (max-width: 767px) {
	.footer-3 .footer-middle .footer-newsletter .ff-t-column-1 .input-group .ff-el-input--content {
		margin-left: 10px;
	}
}

.footer-3 .footer-middle .footer-newsletter .input-group .form-control {
	border-radius: 4px;
	border-color: #444;
	height: 40px;
	font-size: 15px;
}

.footer-style-4 .footer-3 .footer-middle .footer-newsletter .input-group .form-control {
	border-radius: 0;
}

.footer-4 .footer-middle .footer-newsletter .input-group .form-control {
	height: 40px;
}

@media only screen and (max-width: 320px) {
	.footer-3 .footer-middle .footer-newsletter .input-group .form-control {
		width: 100%;
	}
}

.footer-3 .footer-middle .footer-newsletter .input-group .form-control:focus {
	border-color: var(--color-secondary);
}

.footer-3 .footer-middle .footer-newsletter .input-group .form-control::-webkit-input-placeholder {
	color: #8F8F8F;
}

.footer-3 .footer-middle .footer-newsletter .input-group .form-control::-moz-placeholder {
	color: #8F8F8F;
}

.footer-3 .footer-middle .footer-newsletter .input-group .form-control:-ms-input-placeholder {
	color: #8F8F8F;
}

.footer-3 .footer-middle .footer-newsletter .input-group .form-control::-ms-input-placeholder {
	color: #8F8F8F;
}

.footer-3 .footer-middle .footer-newsletter .input-group .form-control::placeholder {
	color: #8F8F8F;
}

@media screen and (max-width: 320px) {
	.footer-3 .footer-middle .footer-newsletter .input-group .btn-outline-secondary {
		margin-top: 24px;
		text-align: center;
	}
}

.footer-3 .footer-bottom .bottom-link ul li a {
	color: var(--color-body);
}

.footer-3 .footer-bottom .bottom-link ul li a:after {
	background-color: var(--color-body);
}

.footer-3 .footer-bottom .bottom-link ul li a:hover {
	color: var(--color-primary);
}

.footer-3.rt-section-1 {
	background-color: #f9f9f9;
}

.footer-3.rt-section-2 {
	background-color: #F5F4F2;
	border: 0;
}

.footer-4 {
	background: #F2F6F9;
}

.footer-4 .footer-top {
	padding: 90px 0px 65px 0px;
	border-bottom: 1px solid #d9d9d9;
}

@media (max-width: 991px) {
	.footer-4 .footer-top {
		text-align: center;
	}
}

@media only screen and (max-width: 767px) {
	.footer-4 .footer-top {
		padding: 40px 0px;
	}
}

.footer-4 .footer-top .footer-menu-area .logo-area {
	margin-bottom: 25px;
}

.footer-4 .footer-top .footer-menu-area .menu-area ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 45px;
	list-style: none;
	padding: 0;
	margin: 0;
}

@media only screen and (max-width: 991px) {
	.footer-4 .footer-top .footer-menu-area .menu-area ul {
		gap: 30px;
		margin-bottom: 30px;
	}
}

@media only screen and (max-width: 991px) {
	.footer-4 .footer-top .footer-menu-area .menu-area ul {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

@media only screen and (max-width: 479px) {
	.footer-4 .footer-top .footer-menu-area .menu-area ul {
		gap: 20px;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

.footer-4 .footer-top .footer-menu-area .menu-area ul li a {
	display: inline-block;
	font-family: var(--font-title);
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
	color: var(--color-secondary);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.footer-4 .footer-top .footer-menu-area .menu-area ul li a:hover {
	color: var(--color-primary);
}

@media only screen and (max-width: 991px) {
	.footer-4 .footer-top .footer-newsletter {
		text-align: center;
		margin-top: 24px;
		display: inline-block;
	}
}

.footer-4 .footer-top .footer-newsletter .input-group .form-control {
	height: 60px;
	color: var(--color-secondary);
	border: 1px solid #444;
	background-color: transparent;
	border-radius: 0;
}

.footer-style-5 .footer-4 .footer-top .footer-newsletter .input-group .form-control {
	height: 55px;
}

.footer-4 .footer-top .footer-newsletter .input-group .form-control:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
	outline: 0;
	border-color: var(--color-primary);
}

.footer-4 .footer-top .footer-newsletter .input-group .form-control::-webkit-input-placeholder {
	color: #444;
}

.footer-4 .footer-top .footer-newsletter .input-group .form-control::-moz-placeholder {
	color: #444;
}

.footer-4 .footer-top .footer-newsletter .input-group .form-control:-ms-input-placeholder {
	color: #444;
}

.footer-4 .footer-top .footer-newsletter .input-group .form-control::-ms-input-placeholder {
	color: #444;
}

.footer-4 .footer-top .footer-newsletter .input-group .form-control::placeholder {
	color: #444;
}

.footer-4 .footer-top .footer-newsletter .input-group .btn-outline-secondary {
	height: 60px;
	width: 100%;
	color: var(--color-white);
	font-weight: 700;
	font-size: 15px;
	line-height: 24px;
	text-align: center;
	display: inline-block;
	background-color: var(--color-primary);
	border-radius: 0;
	border: 0;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	margin-top: 10px;
	border: 1px solid var(--color-primary);
	letter-spacing: 0.1em;
	margin-bottom: 0;
}

.footer-style-5 .footer-4 .footer-top .footer-newsletter .input-group .btn-outline-secondary {
	text-transform: uppercase;
	height: 55px;
}

.footer-4 .footer-top .footer-newsletter .input-group .btn-outline-secondary:hover {
	color: var(--color-primary);
	background-color: var(--color-secondary);
	border-color: var(--color-secondary);
	color: var(--color-white);
	opacity: 1;
}

.footer-4 .footer-top .footer-newsletter .input-group .btn-outline-secondary:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
	outline: 0;
}

.footer-4 .footer-bottom .footer-text {
	font-size: 15px;
	line-height: 20px;
	padding: 60px 0px;
	color: #444;
}

@media only screen and (max-width: 767px) {
	.footer-4 .footer-bottom {
		padding-bottom: 40px;
	}

	.footer-4 .footer-bottom .footer-text {
		text-align: center;
		padding: 40px 0px;
		margin-bottom: 0;
	}
}

.footer-4 .footer-bottom .footer-text .color {
	color: var(--color-secondary);
	font-weight: 700;
}

.footer-4 .footer-bottom .footer-text a {
	color: #444;
}

.footer-4 .footer-bottom .footer-text a:hover {
	color: var(--color-primary);
}

.footer-4 .footer-bottom .footer-social-5 {
	text-align: left;
}

@media only screen and (max-width: 767px) {
	.footer-4 .footer-bottom .footer-social-5 {
		text-align: center;
	}
}

.footer-4 .footer-bottom .footer-social-5 .social {
	margin: 0;
	padding: 0;
}

.footer-4 .footer-bottom .footer-social-5 .social li {
	display: inline-block;
	margin-left: 5px;
}

.footer-4 .footer-bottom .footer-social-5 .social li:last-child {
	margin-left: 0;
}

.footer-4 .footer-bottom .footer-social-5 .social li a {
	height: 50px;
	width: 50px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border: 1px solid #d9d9d9;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
}

.footer-4 .footer-bottom .footer-social-5 .social li a:hover {
	border: 1px solid var(--color-primary);
	background-color: var(--color-primary);
}

.footer-4 .footer-bottom .footer-social-5 .social li a:hover i {
	color: var(--color-white);
	-webkit-animation: toBottomFromTop 0.5s forwards;
	animation: toBottomFromTop 0.5s forwards;
}

.footer-4 .footer-bottom .footer-social-5 .social li a i {
	color: #000;
	font-size: 15px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.footer-5 {
	background-color: var(--color-secondary);
}

.footer-5 .footer-top {
	border-bottom: 1px solid #4E4E4F;
}

.footer-5 .footer-top .footer-menu-area .logo-area {
	margin-bottom: 25px;
}

.footer-5 .footer-top .footer-menu-area .menu-area ul li a {
	color: #B8B8B8;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.footer-5 .footer-top .footer-menu-area .menu-area ul li a:hover {
	color: var(--color-primary);
}

.footer-5 .footer-top .footer-newsletter .input-group .form-control {
	color: var(--color-white);
	border: 1px solid #686868;
}

.footer-5 .footer-top .footer-newsletter .input-group .form-control:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
	outline: 0;
	border-color: var(--color-white);
}

.footer-5 .footer-top .footer-newsletter .input-group .form-control::-webkit-input-placeholder {
	color: #686868;
}

.footer-5 .footer-top .footer-newsletter .input-group .form-control::-moz-placeholder {
	color: #686868;
}

.footer-5 .footer-top .footer-newsletter .input-group .form-control:-ms-input-placeholder {
	color: #686868;
}

.footer-5 .footer-top .footer-newsletter .input-group .form-control::-ms-input-placeholder {
	color: #686868;
}

.footer-5 .footer-top .footer-newsletter .input-group .form-control::placeholder {
	color: #686868;
}

.footer-5 .footer-top .footer-newsletter .input-group .btn-outline-secondary {
	color: var(--color-white);
	background-color: var(--color-primary);
	letter-spacing: 0.2em;
	border: 1px solid var(--color-primary);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.footer-5 .footer-top .footer-newsletter .input-group .btn-outline-secondary:hover {
	background-color: var(--color-white);
	color: var(--color-secondary);
	border-color: var(--color-white);
}

.footer-5 .footer-top .footer-newsletter .input-group .btn-outline-secondary:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
	outline: 0;
}

.footer-5 .footer-bottom .footer-text {
	color: #B8B8B8;
}

.footer-5 .footer-bottom .footer-text .color {
	color: var(--color-white);
	font-weight: 700;
}

.footer-5 .footer-bottom .footer-social-5 {
	text-align: left;
}

@media only screen and (max-width: 767px) {
	.footer-5 .footer-bottom .footer-social-5 {
		text-align: center;
	}
}

.footer-5 .footer-bottom .footer-social-5 .social li:last-child {
	margin-left: 0;
}

.footer-5 .footer-bottom .footer-social-5 .social li a {
	border: 1px solid #686868;
}

.footer-5 .footer-bottom .footer-social-5 .social li a:hover {
	border: 1px solid var(--color-primary);
	background-color: var(--color-primary);
}

.footer-5 .footer-bottom .footer-social-5 .social li a:hover i {
	color: var(--color-white);
	-webkit-animation: toBottomFromTop 0.5s forwards;
	animation: toBottomFromTop 0.5s forwards;
}

.footer-5 .footer-bottom .footer-social-5 .social li a i {
	color: #9F9FA0;
	font-size: 15px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.footer-style-6 .footer-3.rt-section-2 {
	background: #fff;
}

@media only screen and (max-width: 991px) {
	.footer-6 {
		text-align: center;
	}
}

@media only screen and (max-width: 1199px) {
	.footer-6 .footer-middle {
		padding-bottom: 50px;
	}
}

@media only screen and (max-width: 991px) {
	.footer-6 .footer-middle .footer-logo-area {
		margin-bottom: 20px;
	}
}

@media only screen and (max-width: 991px) {
	.footer-6 .footer-middle .footer-logo-area .item-social .social {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

@media only screen and (max-width: 1199px) {
	.footer-6 .footer-middle .footer-link {
		padding-right: 0px;
		margin-bottom: 10px;
	}
}

.footer-style-6 .footer-bottom-style-4 {
	background: #fff;
}

@media only screen and (max-width: 991px) {
	.footer-6 .footer-bottom .bottom-link ul {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

@media only screen and (max-width: 991px) {
	.footer-6 .footer-bottom .footer-text {
		text-align: center;
	}
}

.footer-bottom-style-2 .footer-text.style-2 {
	text-align: center;
	font-size: 15px;
	line-height: 20px;
	padding: 20px 0px;
	color: #444;
	margin-bottom: 0;
}

.footer-bottom-style-2 .footer-text.style-2 a {
	color: #444;
}

.footer-bottom-style-2 .footer-text.style-2 a:hover {
	color: var(--color-primary);
}

.footer-bottom-style-2 .footer-text.style-2 .color {
	color: var(--color-primary);
	font-weight: 700;
}

.footer-bottom-style-3 .footer-text.style-2 .color {
	color: var(--color-secondary);
}

.footer-bottom-style-4 {
	border-top: 1px solid #C5C5C5;
	background-color: #F5F4F2;
	padding: 20px 0px;
}

.footer-bottom-style-4 .footer-text {
	font-size: 15px;
	line-height: 20px;
	color: #696969;
	margin-bottom: 0;
}

@media screen and (max-width: 991px) {
	.footer-bottom-style-4 .footer-text {
		text-align: center;
		margin-bottom: 10px;
	}
}

.footer-bottom-style-4 .footer-text .black {
	color: var(--color-secondary);
	font-weight: 600;
}

.footer-bottom-style-4 .footer-text a {
	color: #696969;
}

.footer-bottom-style-4 .footer-text a:hover {
	color: var(--color-primary);
}

.footer-bottom-style-4 .footer-menu ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 40px;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	list-style: none;
	margin: 0;
	padding: 0;
}

@media screen and (max-width: 991px) {
	.footer-bottom-style-4 .footer-menu ul {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

@media screen and (max-width: 479px) {
	.footer-bottom-style-4 .footer-menu ul {
		gap: 20px;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

.footer-bottom-style-4 .footer-menu ul li a {
	font-family: var(--font-title);
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
	color: #696969;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.footer-bottom-style-4 .footer-menu ul li a:hover {
	color: #F66737;
}

.footer-widget-title {
	font-family: var(--font-title);
	font-weight: 600;
	font-size: 20px;
	line-height: 24px;
	color: var(--color-white);
	margin-bottom: 22px;
}

span.footer-widget-title {
	display: block;
}

.footer-2 .footer-widget-title,
.footer-3 .footer-widget-title,
.footer-widget-title.style-2 {
	color: var(--color-secondary);
}

.footer-1 .footer-widget .rss-widget-title {
	color: #fff;
}

.footer-3 .footer-middle .footer-widget p,
.newsletter-top-content p {
	color: #444;
}

.woocommerce-wrap-1 {
	position: relative;
	padding: 120px 0px 120px;
}

.woocommerce-wrap-1 .section-heading {
	margin-bottom: 30px;
}

.woocommerce-wrap-1 .tab--style--1 .nav-tabs {
	border-bottom: 0;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 40px;
}

.woocommerce-wrap-1 .tab--style--1 .nav-tabs .nav-item {
	display: inline-block;
	margin-left: 30px;
}

@media only screen and (max-width: 767px) {
	.woocommerce-wrap-1 .tab--style--1 .nav-tabs .nav-item {
		margin-left: 15px;
	}
}

@media only screen and (max-width: 479px) {
	.woocommerce-wrap-1 .tab--style--1 .nav-tabs .nav-item {
		margin-bottom: 15px;
	}
}

.woocommerce-wrap-1 .tab--style--1 .nav-tabs .nav-item:last-child {
	margin-left: 0;
}

.woocommerce-wrap-1 .tab--style--1 .nav-tabs .nav-item .nav-link {
	color: var(--color-secondary);
	display: inline-block;
	font-size: 18px;
	font-weight: 500;
	font-family: var(--font-title);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	border-radius: 0;
	padding: 3px 10px;
	border: 0;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.woocommerce-wrap-1 .tab--style--1 .nav-tabs .nav-item .active {
	color: var(--color-white);
	background-color: var(--color-primary);
}

.rt-el-product-isotope.rtin-layout-1 .rtin-navs-area .rtin-navs {
	position: relative;
	text-align: center;
	margin-bottom: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 30px;
}

@media (max-width: 767px) {
	.rt-el-product-isotope.rtin-layout-1 .rtin-navs-area .rtin-navs {
		gap: 20px;
	}
}

.rt-el-product-isotope.rtin-layout-1 .rtin-navs-area .rtin-navs a {
	color: var(--color-secondary);
	display: inline-block;
	font-size: 18px;
	font-weight: 500;
	font-family: var(--font-title);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	border-radius: 0;
	padding: 3px 10px;
	margin: 0 13px;
	border: 0;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.rt-el-product-isotope.rtin-layout-1 .rtin-navs-area .rtin-navs a.current {
	color: var(--color-white);
	background-color: var(--color-primary);
}

.woocommerce-box-1:hover .item-img a .jb-normal {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.woocommerce-box-1:hover .item-img .woo-social ul li {
	-webkit-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
	-webkit-backface-visibility: visible;
	backface-visibility: visible;
}

.woocommerce-box-1 .item-img {
	position: relative;
	overflow: hidden;
}

.woocommerce-box-1 .item-img a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}

.woocommerce-box-1 .item-img a .jb-normal {
	max-width: none;
	width: calc(100% + 30px);
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
	-webkit-transform: translate3d(20px, 0, 0);
	transform: translate3d(20px, 0, 0);
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.woocommerce-box-1 .item-img .woo-social {
	position: absolute;
	bottom: 1px;
	left: 1px;
}

.woocommerce-box-1 .item-img .woo-social ul li {
	opacity: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.woocommerce-box-1 .item-img .woo-social ul li:nth-child(1) {
	-webkit-transition-delay: 0.4s;
	transition-delay: 0.4s;
}

.woocommerce-box-1 .item-img .woo-social ul li:nth-child(2) {
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
}

.woocommerce-box-1 .item-img .woo-social ul li:nth-child(3) {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

.woocommerce-box-1 .item-img .woo-social ul li:nth-child(4) {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

.woocommerce-box-1 .item-img .woo-social ul li:last-child a {
	margin-bottom: 0;
}

.woocommerce-box-1 .item-img .woo-social ul li a {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	height: 40px;
	width: 40px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background-color: #fff;
	margin-bottom: 1px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.woocommerce-box-1 .item-img .woo-social ul li a:hover {
	background-color: var(--color-primary);
}

.woocommerce-box-1 .item-img .woo-social ul li a:hover i {
	color: var(--color-white);
}

.woocommerce-box-1 .item-img .woo-social ul li a i {
	color: var(--color-secondary);
	font-size: 15px;
	font-weight: 600;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.woocommerce-box-1 .item-content {
	text-align: center;
	padding: 25px;
}

.woocommerce-box-1 .item-content .heading-title {
	margin-bottom: 0;
	font-weight: 400;
	font-size: 18px;
	line-height: 21px;
	font-family: var(--font-title);
	margin-bottom: 10px;
}

.woocommerce-box-1 .item-content .heading-title a {
	color: #161F38;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.woocommerce-box-1 .item-content .heading-title a:hover {
	color: var(--color-primary);
}

.woocommerce-box-1 .item-content .price {
	font-weight: 700;
	font-size: 18px;
	line-height: 21px;
	font-family: var(--font-title);
	color: #161F38;
	text-align: center;
	margin-bottom: 15px;
}

.woocommerce-box-1 .item-content .list-wrap .rt-check-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.woocommerce-box-1 .item-content .list-wrap .rt-check-list .item .radio-custom {
	opacity: 0;
	position: absolute;
}

@media only screen and (max-width: 1199px) {
	.woocommerce-box-2 {
		margin-bottom: 24px;
	}
}

.woocommerce-box-2:hover .item-img .woo-social ul li,
.rt-product-block.feature-box-9:hover .woo-social ul li {
	-webkit-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
}

.woocommerce-box-2:hover .item-img .item-content {
	background-color: rgba(0, 0, 0, 0.5);
	-webkit-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
}

.woocommerce-box-2:hover .item-img .item-content .heading-title a {
	color: var(--color-white);
}

.woocommerce-box-2:hover .item-img .item-content .price {
	color: var(--color-white);
}

.woocommerce-box-2 .item-img {
	position: relative;
	overflow: hidden;
}

.woocommerce-box-2 .item-img a {
	width: 100%;
}

.woocommerce-box-2 .item-img a img {
	width: 100%;
}

.woocommerce-box-2 .item-img .woo-social {
	position: absolute;
	top: 20px;
	left: 20px;
}

@media only screen and (max-width: 435px) {
	.woocommerce-box-2 .item-img .woo-social {
		top: 15px;
	}
}

.woocommerce-box-2 .item-img .woo-social ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.woocommerce-box-2 .item-img .woo-social ul li,
.rt-product-block.feature-box-9 .woo-social ul li {
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateY(-10px);
	transform: translateY(-10px);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

@media (max-width: 991px) {
	.woocommerce-box-2 .item-img .woo-social ul li,
	.rt-product-block.feature-box-9 .woo-social ul li {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}
}

.woocommerce-box-2 .item-img .woo-social ul li:nth-child(1),
.rt-product-block.feature-box-9 .woo-social ul li:nth-child(1) {
	-webkit-transition-delay: 0.4s;
	transition-delay: 0.4s;
}

.woocommerce-box-2 .item-img .woo-social ul li:nth-child(2),
.rt-product-block.feature-box-9 .woo-social ul li:nth-child(2) {
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
}

.woocommerce-box-2 .item-img .woo-social ul li:nth-child(3),
.rt-product-block.feature-box-9 .woo-social ul li:nth-child(3) {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

.woocommerce-box-2 .item-img .woo-social ul li:nth-child(4),
.rt-product-block.feature-box-9 .woo-social ul li:nth-child(4) {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

.woocommerce-box-2 .item-img .woo-social ul li:last-child a,
.rt-product-block.feature-box-9 .woo-social ul li:last-child a {
	margin-bottom: 0;
}

.woocommerce-box-2 .item-img .woo-social ul li a,
.rt-product-block.feature-box-9 .woo-social ul li a {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	height: 45px;
	width: 45px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background-color: #fff;
	margin-bottom: 5px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	border-radius: 50%;
	border: none;
	position: relative;
}

@media only screen and (max-width: 435px) {
	.woocommerce-box-2 .item-img .woo-social ul li a {
		margin-bottom: 4px;
	}
}

.woocommerce-box-2 .item-img .woo-social ul li a.added_to_cart {
	display: none;
}

.woocommerce-box-2 .item-img .woo-social ul li a:hover,
.rt-product-block.feature-box-9 .woo-social ul li a:hover {
	background-color: var(--color-primary);
	border: none;
}

.woocommerce-box-2 .item-img .woo-social ul li a:hover i,
.rt-product-block.feature-box-9 .woo-social ul li a:hover i {
	color: var(--color-white);
}

.woocommerce-box-2 .item-img .woo-social ul li a i,
.rt-product-block.feature-box-9 .woo-social ul li a i {
	color: var(--color-secondary);
	font-size: 15px;
	font-weight: 600;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.woocommerce-box-2 .item-img .woo-social ul li a.loading {
	opacity: 1;
	padding: 0;
}

.rt-product-block-3 .item-img .woo-social ul li a.loading:after {
	top: auto;
	left: auto;
	color: var(--color-secondary);
}

.woocommerce-box-2 .item-img .woo-social ul li a.added::after {
	display: none;
}

.woocommerce-box-2 .item-img .item-content {
	text-align: center;
	padding: 15px;
	background-color: #f9f9f9;
	position: absolute;
	z-index: 1;
	bottom: 0;
	right: 0;
	width: 100%;
	-webkit-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
}

.woocommerce-box-2 .item-img .item-content .heading-title {
	margin-bottom: 0;
	font-weight: 400;
	font-size: 18px;
	line-height: 21px;
	font-family: var(--font-title);
	margin-bottom: 6px;
}

.woocommerce-box-2 .item-img .item-content .heading-title a {
	color: #161F38;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.woocommerce-box-2 .item-img .item-content .heading-title a:hover{
	color: var(--color-primary);
}
.woocommerce-box-2 .item-img .item-content .price {
	font-weight: 700;
	font-size: 18px;
	line-height: 21px;
	font-family: var(--font-title);
	color: #161F38;
	text-align: center;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.woocommerce-box-2.style-2 {
	margin-bottom: 24px;
}

.woocommerce-box-3:hover .item-img ul li {
	-webkit-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
	-webkit-backface-visibility: visible;
	backface-visibility: visible;
}

.woocommerce-box-3 .item-img .woo-social {
	position: absolute;
	bottom: 78px;
	left: 1px;
	top: auto;
}

.woocommerce-box-3 .item-img .woo-social ul li {
	opacity: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.woocommerce-box-3 .item-img .woo-social ul li:nth-child(1) {
	-webkit-transition-delay: 0.4s;
	transition-delay: 0.4s;
}

.woocommerce-box-3 .item-img .woo-social ul li:nth-child(2) {
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
}

.woocommerce-box-3 .item-img .woo-social ul li:nth-child(3) {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

.woocommerce-box-3 .item-img .woo-social ul li:nth-child(4) {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

.woocommerce-box-3 .item-img .woo-social ul li:last-child a {
	margin-bottom: 0;
}

.woocommerce-box-3 .item-img .woo-social ul li a {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	height: 40px;
	width: 40px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background-color: #fff;
	margin-bottom: 1px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	border-radius: 0;
}

.woocommerce-box-3 .item-img .woo-social ul li a:hover {
	background-color: var(--color-primary);
}

.woocommerce-box-3 .item-img .woo-social ul li a:hover i {
	color: var(--color-white);
}

.woocommerce-box-3 .item-img .woo-social ul li a i {
	color: var(--color-secondary);
	font-size: 15px;
	font-weight: 600;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.woocommerce-box-4 {
	margin-bottom: 24px;
}

.rt-product-block-8.woocommerce-box-4 {
	margin-bottom: 0;
}

.woocommerce-box-4:hover .item-img ul li {
	-webkit-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
	-webkit-backface-visibility: visible;
	backface-visibility: visible;
}

.woocommerce-box-4:hover .item-img .item-content {
	background-color: #f9f9f9;
}

.woocommerce-box-4:hover .item-img .item-content .heading-title a {
	color: var(--color-primary);
}

.woocommerce-box-4:hover .item-img .item-content .price {
	color: #161F38;
}

.woocommerce-box-4 .item-img .woo-social {
	position: absolute;
	bottom: 106px;
	left: 1px;
	top: auto;
	z-index: 2;
}

.woocommerce-box-4 .item-img .woo-social ul li {
	opacity: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

@media (max-width: 991px) {
	.woocommerce-box-4 .item-img .woo-social ul li {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}
}

.woocommerce-box-4 .item-img .woo-social ul li:nth-child(1) {
	-webkit-transition-delay: 0.4s;
	transition-delay: 0.4s;
}

.woocommerce-box-4 .item-img .woo-social ul li:nth-child(2) {
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
}

.woocommerce-box-4 .item-img .woo-social ul li:nth-child(3) {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

.woocommerce-box-4 .item-img .woo-social ul li:nth-child(4) {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

.woocommerce-box-4 .item-img .woo-social ul li:last-child a {
	margin-bottom: 0;
}

.woocommerce-box-4 .item-img .woo-social ul li a {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	height: 40px;
	width: 40px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background-color: #fff;
	margin-bottom: 1px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	border-radius: 0;
}

.woocommerce-box-4 .item-img .woo-social ul li a:hover {
	background-color: var(--color-primary);
}

.woocommerce-box-4 .item-img .woo-social ul li a:hover i {
	color: var(--color-white);
}

.woocommerce-box-4 .item-img .woo-social ul li a i {
	color: var(--color-secondary);
	font-size: 15px;
	font-weight: 600;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.rt-product-block-7 .item-img .woo-social ul li a.loading {
	opacity: 1;
	color: var(--color-secondary);
}

.rt-product-block-7 .item-img .woo-social ul li a.loading:after {
	top: 13px;
	left: 11px;
}

@media only screen and (max-width: 991px) {
	.woocommerce-box-4 .item-img a {
		width: 100%;
	}
}

@media only screen and (max-width: 991px) {
	.woocommerce-box-4 .item-img a img {
		width: 100%;
	}
}

.woocommerce-box-4 .item-img .item-content {
	padding: 26px 0px 28px;
	position: inherit;
}

.rt-woocommerce {
	margin-top: 100px;
}

@media only screen and (max-width: 991px) {
	.rt-woocommerce {
		margin-top: 0;
		margin-top: 30px;
	}
}

.rt-woocommerce .item-button {
	margin-top: 36px;
}

.woocommerce-wrap-2 {
	background-color: #F8FCFF;
}

.woocommerce-wrap-2 .time-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 40px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media only screen and (max-width: 767px) {
	.woocommerce-wrap-2 .time-wrapper {
		display: block;
	}
}

.counter-inner-1 .item-count {
	display: -webkit-box;
	display: -ms-flexbox;
	display: inline-flex;
	border: 1px solid var(--color-primary);
	padding: 10px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media (max-width: 575px) {
	.counter-inner-1 {
		text-align: center;
	}

	.counter-inner-1 .item-count {
		padding: 10px;
	}
}

.counter-inner-1 .item-count .text {
	display: block;
	font-family: var(--font-title);
	font-weight: 400;
	font-size: 30px;
	color: var(--color-primary);
	margin-left: 10px;
}

@media only screen and (max-width: 425px) {
	.counter-inner-1 .item-count .text {
		font-size: 20px;
	}
}

.counter-inner-1 .item-count .countdown-layout-1 .countdown-section {
	height: 50px;
	width: 50px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: var(--color-primary);
	margin-left: 10px;
}

.counter-inner-1 .item-count .countdown-layout-1 .countdown-section:last-child{
	margin-left: 0;
}

.counter-inner-1 .item-count .countdown-layout-1 .countdown-section .countdown-number {
	font-family: var(--font-title);
	font-weight: 700;
	font-size: 24px;
	text-align: center;
	color: var(--color-white);
}

@media only screen and (max-width: 425px) {
	.counter-inner-1 .item-count .countdown-layout-1 .countdown-section .countdown-number {
		font-size: 20px;
		font-weight: 500;
	}
}

.counter-inner-1 .item-count .countdown-layout-1 .countdown-section span {
	font-weight: 700;
	font-size: 30px;
	text-align: center;
	color: var(--color-primary);
	position: absolute;
}

@media only screen and (max-width: 425px) {
	.counter-inner-1 .item-count .countdown-layout-1 .countdown-section span {
		font-size: 20px;
		font-weight: 500;
	}
}

.counter-inner-1 .item-count .countdown-layout-1 .countdown-section .countdown-unit {
	display: none;
}

@media only screen and (max-width: 767px) {
	.counter-inner-1 .button {
		text-align: center;
		margin-top: 24px;
	}
}

.rt-button a {
	font-family: var(--font-title);
	font-weight: 700;
	font-size: 15px;
	line-height: 18px;
	text-align: center;
	color: var(--color-secondary);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	position: relative;
	letter-spacing: 0.01em;
}

.rt-button a:hover {
	color: var(--color-primary);
}

.rt-button a:hover::after {
	opacity: 1;
	width: 100%;
	right: 0%;
	-webkit-transition: width 0.4s ease;
	transition: width 0.4s ease;
}

.rt-button a:after {
	content: "";
	height: 1px;
	width: 0%;
	background-color: var(--color-primary);
	position: absolute;
	bottom: -5px;
	right: 100%;
	opacity: 0;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

.woocommerce-box-5:hover .item-img a img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.woocommerce-box-5:hover .item-img .woo-social ul li {
	-webkit-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
	-webkit-backface-visibility: visible;
	backface-visibility: visible;
}

.woocommerce-box-5 .item-img {
	position: relative;
	overflow: hidden;
}

.rt-product-list-1.woocommerce-box-5.woocommerce-box-6 .item-img {
	max-width: 400px;
}

@media (max-width: 991px) {
	rt-product-list-1.woocommerce-box-5.woocommerce-box-6 .item-img {
		max-width: 300px;
	}

	.rt-product-list-1.woocommerce-box-5.woocommerce-box-6 .item-content {
		padding-left: 10px;
	}
}

.rtwpvs .rt-product-list.rt-product-list-1 .rtwpvs-terms-wrapper {
	justify-content: start;
}

@media only screen and (max-width: 767px) {
	.woocommerce-box-5 .item-img a {
		width: 100%;
	}
}

.woocommerce-box-5 .item-img a img {
	-webkit-transition: all 1s;
	transition: all 1s;
}

@media only screen and (max-width: 767px) {
	.woocommerce-box-5 .item-img a img {
		width: 100%;
	}
}

.rt-product-block .offer,
.rt-product-block .onsale {
	position: absolute;
	top: 15px;
	right: 15px;
	font-family: var(--font-title);
	font-style: normal;
	font-weight: 500;
	font-size: 18px;
	line-height: 22px;
	text-align: center;
	color: #000000;
	display: inline-block;
	background-color: #FFA234;
	padding: 3px 7px;
}

.woocommerce-box-5 .item-img .woo-social {
	position: absolute;
	bottom: 1px;
	left: 1px;
}

.woocommerce-box-5 .item-img .woo-social ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.woocommerce-box-5 .item-img .woo-social ul li {
	opacity: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

@media (max-width: 991px) {
	.woocommerce-box-5 .item-img .woo-social ul li {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
		-webkit-backface-visibility: visible;
		backface-visibility: visible;
	}
}

.woocommerce-box-5 .item-img .woo-social ul li:nth-child(1) {
	-webkit-transition-delay: 0.4s;
	transition-delay: 0.4s;
}

.woocommerce-box-5 .item-img .woo-social ul li:nth-child(2) {
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
}

.woocommerce-box-5 .item-img .woo-social ul li:nth-child(3) {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

.woocommerce-box-5 .item-img .woo-social ul li:nth-child(4) {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

.woocommerce-box-5 .item-img .woo-social ul li:last-child a {
	margin-bottom: 0;
}

.woocommerce-box-5 .item-img .woo-social ul li a {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	height: 40px;
	width: 40px;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 400;
	border-radius: 0;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background-color: #fff;
	margin-bottom: 1px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	position: relative;
}

.woocommerce-box-5 .item-img .woo-social ul li a.added_to_cart {
	display: none;
}

.rt-product-block-2 .item-img .woo-social ul li a.added:after {
	display: none;
}

.rt-product-block-2 .item-img .woo-social ul li a.loading {
	opacity: 1;
	color: var(--color-secondary);
	padding: 0;
}

.rt-product-block-2 .item-img .woo-social ul li a.loading:hover {
	color: var(--color-white);
}

.rt-product-block-2 .item-img .woo-social ul li a.loading:after {
	top: 7px !important;
}

.woocommerce-box-5 .item-img .woo-social ul li a:hover {
	background-color: var(--color-primary);
}

.woocommerce-box-5 .item-img .woo-social ul li a:hover i {
	color: var(--color-white);
}

.woocommerce-box-5 .item-img .woo-social ul li a i {
	color: var(--color-secondary);
	font-size: 16px;
	font-weight: 600;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.rt-product-list .item-img .woo-social ul li a.added:after {
	display: none;
}

.rt-product-list .item-img .woo-social ul li a.loading {
	opacity: 1;
	padding: 0;
	color: var(--color-secondary);
}

.rt-product-list .item-img .woo-social ul li a.loading:after {
	top: 7px;
	left: 11px;
}

.rt-product-block-1 .item-img .cart-wrapper-1 .cart-button-area .item-button a.loading:before,
.rt-product-block-6 .item-img .cart-wrapper-1 .cart-button-area .item-button a.loading:before,
.rt-product-block-masonry .item-img .woo-social ul li a.loading:after,
.rt-product-block-5 .item-img .woo-social ul li a.loading:after,
.rt-product-block-4 .rt-content .woo-social ul li a.loading:after,
.rt-product-block-2 .item-img .woo-social ul li a.loading:after,
.cl-product-box-1 .btn-list ul li a.loading:after {
	font-family: WooCommerce;
	content: '\e01c';
	vertical-align: top;
	font-weight: 400;
	position: absolute;
	top: 5px;
	left: 11px;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
	z-index: 99999;
}

.rt-product-block-2 .item-img .woo-social ul li a.loading i {
	display: none;
}

.woocommerce-box-5 .item-content {
	text-align: center;
	padding: 20px;
}

.woocommerce-box-5 .item-content .title {
	margin-bottom: 0;
	font-weight: 400;
	font-size: 18px;
	line-height: 21px;
	font-family: var(--font-title);
	margin-bottom: 10px;
}

.woocommerce-box-5 .item-content .title a {
	color: var(--color-secondary);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.woocommerce-box-5 .item-content .title a:hover {
	color: var(--color-primary);
}

.woocommerce-box-5 .item-content .price {
	font-weight: 700;
	font-size: 18px;
	line-height: 21px;
	font-family: var(--font-title);
	color: var(--color-secondary);
	text-align: center;
	margin-bottom: 15px;
}

.woocommerce-box-5 .item-content .list-wrap .rt-check-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.woocommerce-box-5 .item-content .list-wrap .rt-check-list .item .radio-custom {
	opacity: 0;
	position: absolute;
}

.woocommerce-box-6 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 30px;
	background: #FFFFFF;
	-webkit-box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.07);
	box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.07);
}

@media screen and (max-width: 767px) {
	.woocommerce-box-6 {
		display: block;
	}
}

.woocommerce-box-6 .item-content {
	text-align: right;
	padding: 0;
}

@media screen and (max-width: 1199px) {
	.woocommerce-box-6 .item-content {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
	}
}

@media screen and (max-width: 767px) {
	.woocommerce-box-6 .item-content {
		padding: 30px;
	}
}

.woocommerce-box-6 .item-content .price,
.woocommerce-box-6 .item-content .variations {
	text-align: right !important;
}

@media only screen and (min-width: 1200px) {
	.woocommerce-box-6 .item-content p {
		width: 600px;
	}
}

.woocommerce-box-6 .item-content .list-wrap .rt-check-list {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.categories-wrap-1 {
	padding: 100px 0px 100px;
}

.categories-box-1:hover .item-big-img .item-content::before {
	right: -50%;
	bottom: -100%;
	visibility: visible;
	opacity: 1;
}

.categories-box-1 {
	height: 100%;
}

@media only screen and (max-width: 991px) {
	.categories-box-1 {
		height: auto;
	}
}

.categories-box-1:hover .item-big-img > img {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.categories-box-1 .item-big-img {
	overflow: hidden;
	position: relative;
	height: 100%;
	width: 100%;
}

.categories-box-1 .item-big-img > a {
	position: relative;
	height: 100%;
	width: 100%;
}

.categories-box-1 .item-big-img > img {
	max-width: none;
	width: calc(100% + 30px);
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
	-webkit-transform: translate3d(20px, 0, 0);
	transform: translate3d(20px, 0, 0);
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.categories-box-1 .item-big-img .item-content {
	position: absolute;
	bottom: 40px;
	right: 40px;
	z-index: 1;
}

.categories-box-1 .item-big-img .item-content::before {
	content: "";
	height: 358px;
	width: 358px;
	background-color: #8400FF;
	border-radius: 50%;
	position: absolute;
	right: -300%;
	bottom: -300%;
	z-index: -1;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.6s;
	transition: all 0.6s;
}

.categories-box-1 .item-big-img .item-content .sub-title {
	font-family: var(--font-title);
	font-weight: 600;
	font-size: 24px;
	line-height: 34px;
	color: var(--color-white);
}

@media only screen and (max-width: 1199px) {
	.categories-box-1 .item-big-img .item-content .sub-title {
		font-size: 20px;
		line-height: 30px;
	}
}

.categories-box-1 .item-big-img .item-content .title.style-2 a {
	font-family: var(--font-title);
	font-weight: 600;
	font-size: 20px;
	line-height: 28px;
	color: var(--color-white);
	margin-bottom: 15px;
	-webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.categories-box-1 .item-big-img .item-content .title.style-2 a:hover{
	color: var(--color-primary);
}
.categories-box-1 .item-big-img .item-content .item-button .btn {
	background-color: transparent;
	border: 1px solid var(--color-white);
}

.categories-box-1 .item-big-img .item-content .item-button .btn::after {
	background-color: var(--color-primary);
}

.categories-box-1 .item-big-img .item-content .item-button .btn:hover {
	border: 1px solid var(--color-primary);
}

.categories-box-2 {
	height: 100%;
}

@media only screen and (max-width: 479px) {
	.categories-box-2 {
		height: auto;
	}
}

.categories-box-2:hover .item-img > a img {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.categories-box-2:hover .item-img .item-content {
	bottom: 30px;
}

.categories-box-2:hover .item-img .item-content .item-button {
	visibility: visible;
	opacity: 1;
	margin-bottom: 0;
}

.categories-box-2 .item-img {
	overflow: hidden;
	position: relative;
	height: 100%;
}

.categories-box-2 .item-img > a {
	position: relative;
	width: 100%;
	height: 100%;
}

.categories-box-2 .item-img > a img {
	max-width: none;
	width: calc(100% + 30px);
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
	-webkit-transform: translate3d(20px, 0, 0);
	transform: translate3d(20px, 0, 0);
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.categories-box-2 .item-img .item-content {
	position: absolute;
	bottom: 38px;
	right: 40px;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
	z-index: 1;
}

.categories-box-2 .item-img .item-content .title a {
	font-family: var(--font-title);
	font-weight: 600;
	font-size: 20px;
	line-height: 28px;
	color: var(--color-white);
	margin-bottom: 5px;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.categories-box-2 .item-img .item-content .title a:hover{
	color: var(--color-primary);
}

@media only screen and (max-width: 1199px) {
	.categories-box-2 .item-img .item-content .title,
	.categories-box-2 .item-img .item-content .sub-title {
		font-size: 20px;
		line-height: 30px;
	}
}

.categories-box-2 .item-img .item-content .item-button {
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
	margin-bottom: -40px;
}

@media (max-width: 575px) {
	.categories-box-2 .item-img .item-content .item-button {
		visibility: visible;
		opacity: 1;
		margin-bottom: 0;
	}
}

.categories-box-2 .item-img .item-content .item-button .item-btn span {
	font-family: inherit;
	font-size: 100%;
	line-height: inherit;
	font-weight: inherit;
	font-style: inherit;
	outline: 0;
	-ms-word-wrap: break-word;
	word-wrap: break-word;
}

.categories-box-2 .item-img .item-content .item-button .item-btn {
	position: relative;
	display: block;
	top: auto;
	right: auto;
	height: auto;
	width: auto;
	font-size: 15px;
	line-height: 21px;
	font-weight: 500;
	color: var(--color-white);
	z-index: 1;
	overflow: hidden;
}

.categories-box-2 .item-img .item-content .item-button .item-btn .link-text {
	position: relative;
	margin-left: 0;
	display: inline-block;
	vertical-align: middle;
	text-indent: -115px;
	visibility: hidden;
	opacity: 0;
	white-space: nowrap;
	-webkit-transition: visibility .4s ease, margin-left .4s ease-out, text-indent .5s ease-out, color .4s ease, opacity .4s ease;
	-ms-transition: visibility .4s ease, margin-left .4s ease-out, text-indent .5s ease-out, color .4s ease, opacity .4s ease;
	transition: visibility .4s ease, margin-left .4s ease-out, text-indent .5s ease-out, color .4s ease, opacity .4s ease;
	will-change: visibility, margin-right, text-indent, color, opacity;
}

@media (max-width: 575px) {
	.categories-box-2 .item-img .item-content .item-button .item-btn .link-text {
		opacity: 1;
		text-indent: 0;
		margin-left: 3px;
		visibility: visible;
	}
}

.categories-box-2 .item-img .item-content .item-button .item-btn:hover .link-text {
	opacity: 1;
	text-indent: 0;
	margin-left: 3px;
	visibility: visible;
	-webkit-transition: visibility .4s ease, margin-left .3s ease-out, text-indent .4s ease-out, color .4s ease, opacity .4s ease;
	-ms-transition: visibility .4s ease, margin-left .3s ease-out, text-indent .4s ease-out, color .4s ease, opacity .4s ease;
	transition: visibility .4s ease, margin-left .3s ease-out, text-indent .4s ease-out, color .4s ease, opacity .4s ease;
}

.categories-box-2 .item-img .item-content .item-button .item-btn .link-icon {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	overflow: hidden;
	line-height: 1.4em;
	text-align: center;
	font-size: 15px;
	font-weight: 400;
}

.categories-box-2 .item-img .item-content .item-button .item-btn:hover{
	color: var(--color-primary);
}

.categories-wrap-2 {
	padding: 120px 0px 0px 0px;
}

.inner-categories-2 .categories-box-2 {
	height: 100%;
}

@media screen and (max-width: 991px) {
	.inner-categories-2 .categories-box-2 {
		height: auto;
	}
}

.inner-categories-2 .categories-box-2:hover .item-img a img {
	-webkit-transform: scale(1.22) rotate(0deg);
	transform: scale(1.22) rotate(0deg);
}

.inner-categories-2 .categories-box-2 .item-img {
	height: 100%;
	position: relative;
	overflow: hidden;
}

.inner-categories-2 .categories-box-2 .item-img a {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.inner-categories-2 .categories-box-2 .item-img a img {
	-webkit-transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
	transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.inner-categories-2 .categories-box-2 .item-img .content {
	position: absolute;
	bottom: 100px;
	left: 100px;
}

.inner-categories-2 .categories-box-2 .item-img .content .title {
	font-size: 36px;
	line-height: 43px;
	margin-bottom: 5px;
	font-weight: 500;
}

@media screen and (max-width: 767px) {
	.inner-categories-2 .categories-box-2 .item-img .content .title {
		font-size: 28px;
		line-height: 33px;
	}
}

@media screen and (max-width: 479px) {
	.inner-categories-2 .categories-box-2 .item-img .content .title {
		font-size: 22px;
		line-height: 27px;
	}
}

.inner-categories-2 .categories-box-2 .item-img .content .cat-button .button {
	color: var(--color-secondary);
}

.inner-categories-2 .categories-box-2 .item-img .content .cat-button .button:hover {
	color: var(--color-primary);
}

.inner-categories-2 .categories-box-2 .item-img .content .cat-button .button:hover .icon i {
	-webkit-animation: toRightFromLeft 0.5s forwards;
	animation: toRightFromLeft 0.5s forwards;
	color: var(--color-primary);
}

.inner-categories-2 .categories-box-2 .item-img .content .cat-button .button .icon i {
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	color: var(--color-secondary);
	margin-right: 5px;
}

.inner-categories-2 .categories-box-2 .item-img .content.style-2 {
	bottom: auto;
	left: auto;
	top: 60px;
	right: 105px;
}

.inner-categories-2 .categories-box-2 .item-img .content.style-3 {
	bottom: 45px;
	left: auto;
	right: 30px;
}

.inner-categories-2 .categories-box-2 .item-img .content.style-4 {
	left: 100px;
	bottom: auto;
	top: 100px;
}

@media screen and (max-width: 991px) {
	.inner-categories-2 .categories-box-3 {
		margin-top: 24px;
	}
}

.inner-categories-2 .categories-box-4, .inner-categories-2 .categories-box-5 {
	height: auto;
}

@media screen and (max-width: 1199px) {
	.inner-categories-2 .categories-box-4 {
		margin-top: 24px;
	}
}

.inner-categories-2 .categories-box-5 {
	margin-top: 24px;
}

.insta-box-1:hover .galleryitem a:before {
	visibility: visible;
	opacity: 1;
	width: 100%;
	right: auto;
	left: 0;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.insta-box-1:hover .galleryitem a img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.insta-box-1:hover .galleryitem .item-overlay {
	top: 50%;
	-webkit-transform: translate(50%, -50%);
	transform: translate(50%, -50%);
	visibility: visible;
	opacity: 1;
}

.insta-box-1 .galleryitem {
	margin-bottom: 0;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.insta-box-1 .galleryitem a {
	width: 100%;
	position: relative;
	z-index: 1;
	display: block;
}

.insta-box-1 .galleryitem a::before {
	content: "";
	height: 100%;
	width: 0%;
	position: absolute;
	background-color: rgba(0, 0, 0, 0.62);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	visibility: hidden;
	opacity: 0;
	top: 0%;
	right: 0%;
	z-index: 2;
}

.insta-box-1 .galleryitem a img {
	width: 100%;
	-webkit-transform: scale(1);
	transform: scale(1);
	transition: transform 3s cubic-bezier(0.2, 0.96, 0.34, 1), -webkit-transform 3s cubic-bezier(0.2, 0.96, 0.34, 1);
}

.insta-box-1 .galleryitem .item-overlay {
	position: absolute;
	z-index: 3;
	right: 50%;
	top: 70%;
	-webkit-transform: translate(50%, -70%);
	transform: translate(50%, -70%);
	-webkit-transition: all 0.6s ease-out;
	transition: all 0.6s ease-out;
	visibility: hidden;
	opacity: 0;
	width: 100%;
	text-align: center;
}

.insta-box-1 .galleryitem .item-overlay .rt-instra {
	font-size: 18px;
	height: 40px;
	width: 40px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background-color: var(--color-primary);
	color: var(--color-white);
	border-radius: 50%;
}

.insta-box-1 .galleryitem .item-overlay .rt-instra:before {
	display: none;
}

.insta-box-1 .sbi_photo_wrap a {
	width: 100%;
	position: relative;
	z-index: 1;
	display: block;
}

.insta-box-1 .sbi_photo_wrap a:hover {
	opacity: 1 !important;
}

.insta-box-1 .sbi_photo_wrap a::before {
	content: "";
	height: 100%;
	width: 0%;
	position: absolute;
	background-color: rgba(0, 0, 0, 0.62);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	visibility: hidden;
	opacity: 0;
	top: 0%;
	right: 0%;
	z-index: 2;
}

.insta-box-1 .sbi_photo_wrap:hover a:before {
	visibility: visible;
	opacity: 1;
	width: 100%;
	right: auto;
	left: 0;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.insta-box-1 .sbi_photo_wrap a::after {
	content: "\f16d";
	position: absolute;
	font-size: 18px;
	height: 40px;
	width: 40px;
	font-family: "Font Awesome 6 Brands";
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background-color: var(--color-primary);
	color: var(--color-white);
	border-radius: 50%;
	right: 50%;
	top: 70%;
	-webkit-transform: translate(50%, -70%);
	transform: translate(50%, -70%);
	-webkit-transition: all 0.6s ease-out;
	transition: all 0.6s ease-out;
	visibility: hidden;
	opacity: 0;
	z-index: 3;
}

.insta-box-1 .sbi_photo_wrap:hover a:after {
	top: 50%;
	-webkit-transform: translate(50%, -50%);
	transform: translate(50%, -50%);
	visibility: visible;
	opacity: 1;
}

/* Grid layout */
.grid-layout-3 #sbi_images {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
	grid-auto-rows: 207px;
	grid-gap: 20px;
}
@media only screen and (max-width: 767px) {
	.grid-layout-3 #sbi_images {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media only screen and (max-width: 480px) {
	.grid-layout-3 #sbi_images {
		grid-template-columns: repeat(2, 1fr);
	}
}
.grid-layout-3 #sbi_images .sbi_item{
	width: 100% !important;
	padding: 0 !important;
}
.grid-layout-3 #sbi_images .sbi_item .sbi_photo_wrap,
.grid-layout-3 #sbi_images .sbi_item a.sbi_photo {
	width: 100% !important;
	height: 100% !important;
}
@media only screen and (min-width: 768px) {
	.grid-layout-3 #sbi_images .sbi_item:nth-child(2) {
		grid-column: 2/4;
		grid-row: 1 / 3;
	}
}
.brand-wrap-1 {
	padding: 60px 0px 100px 0px;
}

@media only screen and (max-width: 991px) {
	.brand-wrap-1 {
		padding-bottom: 75px;
	}
}

.brand-box-1 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media only screen and (max-width: 991px) {
	.brand-box-1 {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		justify-content: center;
	}
}

@media only screen and (max-width: 991px) {
	.brand-box-1 .brand-img {
		width: 33.33%;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 33.33%;
		flex: 0 0 33.33%;
		margin-bottom: 24px;
		text-align: center;
	}
}

@media only screen and (max-width: 479px) {
	.brand-box-1 .brand-img {
		width: 50%;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
	}
}

.brand-box-1 .brand-img:hover img {
	-webkit-filter: invert(0.1);
	filter: invert(0.1);
}

.brand-box-1 .brand-img img {
	-webkit-filter: invert(0.8);
	filter: invert(0.8);
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

.feature-wrap-1 {
	padding: 125px 0px 0px 0px;
}

.feature-box-1 .feature-inner:hover .item-icon {
	-webkit-transform: rotateY(-180deg);
	transform: rotateY(-180deg);
}

.feature-box-1 .feature-inner .item-icon {
	text-align: center;
	margin-bottom: 7px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-webkit-transform: rotateY(0deg);
	transform: rotateY(0deg);
}

.feature-box-1 .feature-inner .content {
	text-align: center;
}

.feature-box-1 .feature-inner .content .title {
	font-weight: 600;
	font-size: 20px;
	line-height: 30px;
	margin-bottom: 0;
}

.feature-box-1 .feature-inner .content p {
	margin-bottom: 0;
	font-size: 15px;
	line-height: 20px;
	color: #919191;
}

.feature-box-2 {
	background: #FFFFFF;
	-webkit-box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.05);
	box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.05);
	padding: 120px 88px;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

@media screen and (min-width: 1200px) {
	.feature-box-2 {
		margin-left: -270px;
	}
}

@media only screen and (max-width: 1199px) {
	.feature-box-2 {
		margin-bottom: 24px;
	}
}

@media only screen and (max-width: 767px) {
	.feature-box-2 {
		padding: 70px;
	}
}

@media only screen and (max-width: 479px) {
	.feature-box-2 {
		padding: 50px;
		text-align: right;
	}
}

@media only screen and (max-width: 320px) {
	.feature-box-2 {
		padding: 30px;
	}
}

.feature-box-2 .section-heading {
	width: auto;
	height: auto;
	margin-bottom: 20px;
}

@media only screen and (max-width: 479px) {
	.feature-box-2 .section-heading {
		text-align: right;
	}
}

.feature-box-2 .item-button {
	text-align: center;
}

.feature-box-2 .shape-element {
	position: absolute;
	bottom: 0;
	right: 50%;
	-webkit-transform: translateX(50%);
	transform: translateX(50%);
	overflow: hidden;
}

@media only screen and (max-width: 767px) {
	.feature-box-2 .shape-element {
		display: none;
	}
}

@media only screen and (max-width: 479px) {
	.feature-box-2 .item-button {
		text-align: right;
	}
}

.feature-box-2 .item-button .btn.style-2 {
	background-color: transparent;
	border: 1px solid var(--color-primary);
	color: var(--color-primary);
}

.feature-box-2 .item-button .btn.style-2:hover {
	border: 1px solid var(--color-secondary);
	color: var(--color-white);
}

@media screen and (min-width: 1200px) {
	.feature-box-2.style-2 {
		margin-left: 0px;
		margin-right: -200px;
	}
}

.feature-box-2.style-2 .shape-element {
	top: 0;
	left: 0;
	bottom: auto;
	right: auto;
	-webkit-transform: translateX(0);
	transform: translateX(0);
	z-index: -1;
}

@media only screen and (max-width: 767px) {
	.feature-box-2.style-2 .shape-element {
		display: none;
	}
}

.feature-box-3 .item-img {
	margin-bottom: 0;
	text-align: left;
}

.feature-box-3 .item-img img {
	width: 100%;
}

@media only screen and (max-width: 1199px) {
	.feature-box-3.style-2 {
		margin-bottom: 24px;
	}
}

.feature-wrap-2 {
	padding: 120px 0px 0px 0px;
}

.feature-wrap-3 {
	padding-top: 0;
}

.feature-wrap-5 {
	padding-top: 120px;
}

.feature-wrap-5 .section-heading {
	height: auto;
}

.feature-wrap-5 .tab--style--2 .nav-tabs {
	border-bottom: 0;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 22px;
}

.feature-wrap-5 .tab--style--2 .nav-tabs .nav-item {
	display: inline-block;
	margin-left: 60px;
}

@media only screen and (max-width: 991px) {
	.feature-wrap-5 .tab--style--2 .nav-tabs .nav-item {
		margin-left: 30px;
	}
}

@media only screen and (max-width: 320px) {
	.feature-wrap-5 .tab--style--2 .nav-tabs .nav-item {
		margin-left: 20px;
	}
}

.feature-wrap-5 .tab--style--2 .nav-tabs .nav-item:last-child {
	margin-left: 0;
}

.feature-wrap-5 .tab--style--2 .nav-tabs .nav-item .nav-link {
	color: #8B8B8C;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 16px;
	font-weight: 600;
	font-family: var(--font-title);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	border-radius: 0;
	border: 0;
	padding: 0;
}

.feature-wrap-5 .tab--style--2 .nav-tabs .nav-item .nav-link svg {
	color: #a3a3a3;
	margin-left: 10px;
}

.feature-wrap-5 .tab--style--2 .nav-tabs .nav-item .nav-link img {
	margin-left: 5px;
	position: relative;
	top: -2px;
}

.feature-wrap-5 .tab--style--2 .nav-tabs .nav-item .active {
	color: var(--color-primary);
}

.feature-wrap-5 .tab--style--2 .nav-tabs .nav-item .active svg {
	color: var(--color-primary);
}

.rt-el-product-isotope.rtin-layout-2 .rtin-navs-area .rtin-navs {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 60px;
	margin-bottom: 26px;
}

@media only screen and (max-width: 767px) {
	.rt-el-product-isotope.rtin-layout-2 .rtin-navs-area .rtin-navs {
		gap: 30px;
	}
}

.rt-el-product-isotope.rtin-layout-2 .rtin-navs-area .rtin-navs a {
	color: #8B8B8C;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 16px;
	font-weight: 600;
	font-family: var(--font-title);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	border-radius: 0;
	border: 0;
	padding: 0;
	padding-right: 40px;
	position: relative;
}

.rt-el-product-isotope.rtin-layout-2 .rtin-navs-area .rtin-navs a::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 25px;
	height: 25px;
	-webkit-mask-image: var(--rt-cat-img);
	mask-image: var(--rt-cat-img);
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	background-color: #8B8B8C;
	transition: all 0.3s;
}

.rt-el-product-isotope.rtin-layout-2 .rtin-navs-area .rtin-navs a img {
	max-width: 40px;
	margin-left: 13px;
}

.rt-el-product-isotope.rtin-layout-2 .rtin-navs-area .rtin-navs a.current {
	color: var(--color-primary);
}

.rt-el-product-isotope.rtin-layout-2 .rtin-navs-area .rtin-navs a.current::before {
	background-color: var(--color-primary);
}

.feature-wrap-6 {
	padding-bottom: 120px;
}

@media only screen and (max-width: 1199px) {
	.feature-wrap-6 {
		padding-bottom: 96px;
	}
}

.feature-wrap-6 .section-heading {
	height: auto;
}

.feature-box-4:hover .item-img a img {
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}

.feature-box-4.feature-box-9:hover .item-img a img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.feature-box-4:hover .item-img .cart-wrapper-1,
.rt-product-list-1.woocommerce-box-5:hover .item-img .cart-wrapper-1 {
	bottom: 50px;
	visibility: visible;
	opacity: 1;
}

.feature-box-4 .item-img {
	position: relative;
	overflow: hidden;
}

@media only screen and (max-width: 1199px) {
	.feature-box-4 .item-img a {
		width: 100%;
	}
}

.feature-box-4 .item-img a img {
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
	-webkit-transform: scale(1);
	transform: scale(1);
}

@media only screen and (max-width: 1199px) {
	.feature-box-4 .item-img a img {
		width: 100%;
	}
}

.feature-box-4 .item-img .cart-wrapper-1,
.rt-product-list-1.woocommerce-box-5 .item-img .cart-wrapper-1 {
	position: absolute;
	bottom: 0px;
	width: 100%;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
	padding: 0 20px;
	text-align: center;
}

@media (max-width: 991px) {
	.feature-box-4 .item-img .cart-wrapper-1,
	.rt-product-list-1.woocommerce-box-5 .item-img .cart-wrapper-1 {
		bottom: 30px;
		visibility: visible;
		opacity: 1;
	}
}

@media (max-width: 991px) {
	.feature-box-4 .item-img .cart-wrapper-1 {
		padding: 0 5px;
	}
}

@media only screen and (max-width: 1199px) {
	.feature-box-4 .item-img .cart-wrapper-1,
	.rt-product-list-1.woocommerce-box-5 .item-img .cart-wrapper-1 {
		right: 0;
		left: 0;
	}
}

@media only screen and (max-width: 375px) {
	.feature-box-4 .item-img .cart-wrapper-1,
	.rt-product-list-1.woocommerce-box-5 .item-img .cart-wrapper-1 {
		text-align: center;
	}
}

.feature-box-4 .item-img .cart-wrapper-1 .cart-button-area,
.rt-product-list-1.woocommerce-box-5 .item-img .cart-wrapper-1 .cart-button-area {
	display: -webkit-box;
	display: -ms-flexbox;
	display: inline-flex;
	flex-wrap: wrap;
	gap: 5px;
}

.feature-box-4 .item-img .cart-wrapper-1 .cart-button-area ul,
.rt-product-list-1.woocommerce-box-5 .item-img .cart-wrapper-1 .cart-button-area ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

@media only screen and (max-width: 1199px) {
	.feature-box-4 .item-img .cart-wrapper-1 .cart-button-area,
	.rt-product-list-1.woocommerce-box-5 .item-img .cart-wrapper-1 .cart-button-area {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

@media only screen and (max-width: 375px) {
	.feature-box-4 .item-img .cart-wrapper-1 .cart-button-area,
	.rt-product-list-1.woocommerce-box-5 .item-img .cart-wrapper-1 .cart-button-area {
		display: inline-block;
	}
}

.feature-box-4 .item-img .cart-wrapper-1 .cart-button-area .item-button,
.rt-product-list-1.woocommerce-box-5 .item-img .cart-wrapper-1 .cart-button-area .item-button {
	margin-top: 0;
}

@media only screen and (max-width: 375px) {
	.feature-box-4 .item-img .cart-wrapper-1 .cart-button-area .item-button,
	.rt-product-list-1.woocommerce-box-5 .item-img .cart-wrapper-1 .cart-button-area .item-button {
		margin-bottom: 24px;
	}
}

.feature-box-4 .item-img .cart-wrapper-1 .cart-button-area .item-button .btn,
.rt-product-list-1.woocommerce-box-5 .item-img .cart-wrapper-1 .cart-button-area .item-button .btn {
	background-color: var(--color-primary);
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	padding: 15px 30px 14px;
	height: 50px;
	border: 0;
	line-height: 1;
}

@media ( max-width: 991px) {
	.feature-box-4 .item-img .cart-wrapper-1 .cart-button-area .item-button .btn {
		padding: 15px 15px 14px;
	}
}

.rt-el-product-isotope .feature-box-4.feature-box-6 .item-img .cart-wrapper-1 .cart-button-area .item-button .btn {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
}

.rt-el-product-isotope .feature-box-4.feature-box-6 .item-img .cart-wrapper-1 .cart-button-area .item-button .btn::after {
	background-color: var(--color-white);
}

.rt-el-product-isotope .feature-box-4.feature-box-6 .item-img .cart-wrapper-1 .cart-button-area .item-button .btn:hover {
	background-color: transparent;
	color: var(--color-primary);
	border-color: #fff;
}

@media only screen and (max-width: 375px) {
	.feature-box-4 .item-img .cart-wrapper-1 .cart-button-area ul,
	.rt-product-list-1.woocommerce-box-5 .item-img .cart-wrapper-1 .cart-button-area ul {
		text-align: center;
	}
}

.feature-box-4 .item-img .cart-wrapper-1 .cart-button-area ul li,
.rt-product-list-1.woocommerce-box-5 .item-img .cart-wrapper-1 .cart-button-area ul li {
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	display: inline-block;
	margin-left: 5px;
}

.feature-box-4 .item-img .cart-wrapper-1 .cart-button-area ul li:last-child,
.rt-product-list-1.woocommerce-box-5 .item-img .cart-wrapper-1 .cart-button-area ul li:last-child {
	margin-left: 0;
}

.feature-box-4 .item-img .cart-wrapper-1 .cart-button-area ul li:last-child a {
	margin-bottom: 0;
}

.feature-box-4 .item-img .cart-wrapper-1 .cart-button-area ul li a,
.rt-product-list-1.woocommerce-box-5 .item-img .cart-wrapper-1 .cart-button-area ul li a {
	width: 46px;
	height: 50px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: var(--color-white);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.feature-box-4 .item-img .cart-wrapper-1 .cart-button-area ul li a:hover,
.rt-product-list-1.woocommerce-box-5 .item-img .cart-wrapper-1 .cart-button-area ul li a:hover {
	background-color: var(--color-primary);
}

.rt-el-product-isotope .feature-box-4.feature-box-6 .item-img .cart-wrapper-1 .cart-button-area ul li a:hover {
	background-color: var(--color-primary);
}

.feature-box-4 .item-img .cart-wrapper-1 .cart-button-area ul li a i,
.rt-product-list-1.woocommerce-box-5 .item-img .cart-wrapper-1 .cart-button-area ul li a i {
	color: var(--color-primary);
	font-size: 15px;
}

.rt-el-product-isotope .feature-box-4.feature-box-6 .item-img .cart-wrapper-1 .cart-button-area ul li a i {
	color: var(--color-primary);
}

.rt-el-product-isotope .feature-box-4.feature-box-6 .item-img .cart-wrapper-1 .cart-button-area ul li a:hover i {
	color: var(--color-white);
}

.rdtheme-wishlist-icon i.ajax-loading {
	display: none;
}

.feature-box-4 .item-content {
	padding: 20px 0px 0px 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.feature-box-4 .item-content .content {
	line-height: 0;
}

.feature-box-4 .item-content .content .title {
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
}

.feature-box-4 .item-content .content .title a {
	color: var(--color-secondary);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.feature-box-4 .item-content .content .title a:hover {
	color: var(--color-primary);
}

.feature-box-4 .item-content .content .price {
	font-weight: 700;
	font-size: 18px;
	line-height: 22px;
	color: var(--color-secondary);
}

.feature-box-4 .item-content .list-wrap .rt-check-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.feature-box-4 .item-content .list-wrap .rt-check-list .item .radio-custom {
	opacity: 0;
	position: absolute;
}

@media only screen and (max-width: 991px) {
	.feature-box-4.style-2 {
		margin-bottom: 24px;
	}
}

.feature-box-5 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	background-color: #f3f3f3;
	padding: 60px 25px 55px;
}

@media only screen and (max-width: 1440px) {
	.feature-box-5 {
		padding: 30px;
		gap: 25px;
	}
}

@media only screen and (max-width: 1199px) {
	.feature-box-5 {
		margin-bottom: 24px;
		padding: 50px 40px;
		align-items: center;
		gap: 50px;
	}
}

@media only screen and (max-width: 479px) {
	.feature-box-5 {
		display: block;
		height: auto;
	}
}

.feature-box-5:hover .post-img img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.feature-box-5 .post-img img {
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
	max-height: 190px;
	object-fit: cover;
}

.feature-box-5 .post-img {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 300px;
	flex: 0 0 300px;
}

@media only screen and (max-width: 1920px) {
  .feature-box-5 .post-img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 200px;
    flex: 0 0 200px;
  }
}

.feature-box-5 .post-content {
	padding-right: 30px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

@media(min-width: 780px) and (max-width: 1024px) {
	.feature-box-5 .post-content {
		display: block;
	}
}

.feature-box-5 .post-content .subtitle {
	color: #4187F0;
	font-weight: 600;
	font-size: 16px;
	line-height: 17px;
	font-family: var(--font-title);
	margin-bottom: 10px;
}

.feature-box-5 .post-content .subtitle-color-2 {
	color: #A01FEF;
}

.feature-box-5 .post-content .subtitle-color-3 {
	color: #EE671C;
}

.feature-box-5 .post-content .title {
	font-weight: 600;
	font-size: 26px;
	line-height: 31px;
}

.feature-box-5 .post-content .title .offer {
	font-style: italic;
	font-weight: 600;
	font-size: 20px;
	line-height: 24px;
	color: #F8142F;
}

.feature-box-5 .post-content .title p {
	font-size: 15px;
}

.feature-box-5 .post-content .post-button .post-btn {
	font-family: var(--font-title);
	font-weight: 600;
	font-size: 15px;
	line-height: 18px;
	color: var(--color-secondary);
	display: inline-block;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	position: relative;
}

.feature-box-5 .post-content .post-button .post-btn:before {
	content: "";
	height: 1px;
	width: 0%;
	background-color: var(--color-primary);
	position: absolute;
	bottom: -2px;
	right: 100%;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

.feature-box-5 .post-content .post-button .post-btn:hover {
	color: var(--color-primary);
}

.feature-box-5 .post-content .post-button .post-btn:hover::before {
	visibility: visible;
	opacity: 1;
	width: 100%;
	right: 0%;
	-webkit-transition: width 0.4s ease;
	transition: width 0.4s ease;
}

.feature-box-5.style-2 {
	background-color: #ECECEC;
}

.feature-box-6 .item-img .cart-wrapper-1 .cart-button-area .item-button .btn,
.rt-product-list-1.woocommerce-box-5 .item-img .cart-wrapper-1 .cart-button-area .item-button .btn {
	background-color: var(--color-primary);
	color: #fff;
	border: 1px solid var(--color-primary);
}

.rt-product-list-1.woocommerce-box-5.woocommerce-box-6 .cart-wrapper-1 .cart-button-area ul li a:hover i {
	color: var(--color-white);
}

.rt-product-list-1.woocommerce-box-5.woocommerce-box-6 .cart-button-area .item-button .btn:hover {
	color: var(--color-white);
	border-color: var(--color-secondary);
}

.feature-box-6 .item-img .cart-wrapper-1 .cart-button-area .item-button .btn::after {
	background-color: transparent;
}

.feature-box-6 .item-img .cart-wrapper-1 .cart-button-area .item-button .btn:hover {
	background-color: var(--color-secondary);
	color: var(--color-white);
	border-color: var(--color-secondary);
}

.rt-product-block-1 .item-img .cart-wrapper-1 .cart-button-area .item-button a.loading,
.rt-product-block-6 .item-img .cart-wrapper-1 .cart-button-area .item-button a.loading {
	opacity: 1;
}

.rt-product-block-1 .item-img .cart-wrapper-1 .cart-button-area .item-button a.loading:before,
.rt-product-block-6 .item-img .cart-wrapper-1 .cart-button-area .item-button a.loading:before {
	top: 16px;
	left: 7px;
}

.rt-product-block-1 .item-img .cart-wrapper-1 .cart-button-area .item-button a.loading:hover:after,
.rt-product-block-6 .item-img .cart-wrapper-1 .cart-button-area .item-button a.loading:hover:after {
	content: none;
}

.feature-box-6 .item-img .cart-wrapper-1 .cart-button-area .item-button .btn.added {
	display: none;
}

.feature-box-6 .item-img .cart-wrapper-1 .cart-button-area .item-button .added_to_cart {
	height: 50px;
	font-family: var(--font-title);
	font-weight: 700;
	font-size: 16px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: var(--color-white);
	background-color: var(--color-primary);
	padding: 15px 30px 14px;
	border-radius: 0;
	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	letter-spacing: 0.1em;
}

.feature-box-6 .item-img .cart-wrapper-1 .cart-button-area .item-button .added_to_cart:hover {
	background-color: var(--color-secondary);
	color: var(--color-white);
	border-color: var(--color-secondary);
}

.feature-box-6 .item-img .cart-wrapper-1 .cart-button-area ul li a i {
	color: var(--color-primary);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.feature-box-6 .item-img .cart-wrapper-1 .cart-button-area ul li a:hover i {
	color: var(--color-white);
}

.feature-box-7 .item-img .cart-wrapper-1 {
	right: 0;
	left: 0;
	text-align: center;
}

.feature-box-7 .item-img .cart-wrapper-1 .cart-button-area {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.feature-box-7 .item-img .cart-wrapper-1 .cart-button-area .item-button {
	margin-top: 0;
}

.feature-box-7 .item-img .cart-wrapper-1 .cart-button-area .item-button .btn {
	background-color: var(--color-primary);
	color: #fff;
	border: 1px solid var(--color-primary);
}

.feature-box-7 .item-img .cart-wrapper-1 .cart-button-area .item-button .btn::after {
	background-color: transparent;
}

.feature-box-7 .item-img .cart-wrapper-1 .cart-button-area .item-button .btn:hover {
	background-color: var(--color-secondary);
	color: var(--color-white);
	border-color: var(--color-secondary);
}

.feature-box-7 .item-img .cart-wrapper-1 .cart-button-area ul li a i {
	color: var(--color-primary);
}

.feature-box-8 {
	padding: 60px 30px 40px;
	background: #FBFBFB;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 1199px) {
	.feature-box-8 {
		margin-bottom: 24px;
	}
}

.feature-box-8:hover {
	background: #FFFFFF;
	-webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.06);
	box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.06);
}

.feature-box-8:hover .content-box-1 .item-icon {
	-webkit-transform: translateY(-10px);
	transform: translateY(-10px);
}

.feature-box-8 .content-box-1 .item-icon {
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	margin-bottom: 20px;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.feature-box-8 .content-box-1 .title {
	font-size: 19px;
	line-height: 24px;
}

.feature-box-8 .content-box-1 p {
	margin-bottom: 0;
}

.rt-product-block.feature-box-9 .woo-social ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

.rt-product-block.feature-box-9 .woo-social {
    position: absolute;
    top: 10px;
    left: 10px;
}

.rt-product-block.feature-box-9 .cart-button-area {
    position: absolute;
    width: 100%;
    right: 50%;
    bottom: 0;
    -webkit-transform: translate(50%, 100%);
    -ms-transform: translate(50%, 100%);
    transform: translate(50%, 100%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.rt-product-block.feature-box-9:hover .cart-button-area {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate(50%, 0);
    -ms-transform: translate(50%, 0);
    transform: translate(50%, 0);
}

.rt-product-block.feature-box-4.feature-box-9:hover .item-img .cart-wrapper-1{
	-webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.rt-product-block.feature-box-4.feature-box-9:hover .item-img .cart-wrapper-1{
	bottom: 0;
}

.rt-product-block.feature-box-9 .cart-button-area .item-button{
	width: 100%;
	display: block;
}

.rt-product-block.feature-box-4.feature-box-9 .cart-button-area .item-button .btn{
	width: 100%;
	background-color: var(--color-secondary);
}

.rt-product-block.feature-box-4.feature-box-9 .cart-button-area .item-button .btn:after{
	background-color: var(--color-primary);
}

.rt-product-block.feature-box-4.feature-box-9 .item-content{
	display: block;
}

.rt-product-block.feature-box-4.feature-box-9 .item-content .content{
	margin-bottom: 8px;
}
.rtwpvs.rtwpvs-archive-align-center .feature-box-9 .item-content .rtwpvs-archive-variation-wrapper .rtwpvs-terms-wrapper{
	justify-content: flex-start;
}
.has-animation .feature-shape-1 {
	width: 0;
	height: 60px;
	background: #FFE1E5;
	margin-bottom: 40px;
	overflow: hidden;
	-webkit-transition: all 1s ease-in-out;
	transition: all 1s ease-in-out;
}

.has-animation.active-animation .feature-shape-1 {
	width: 96%;
}

@media screen and (max-width: 1199px) {
	.has-animation.active-animation .feature-shape-1 {
		display: none;
	}
}

.has-animation .feature-shape-1.style-2 {
	background: #E1EAFF;
	position: absolute;
	left: 12px;
	top: -100px;
}

.has-animation.active-animation .feature-shape-1.style-2 {
	width: 90%;
}

@media screen and (max-width: 1199px) {
	.has-animation.active-animation .feature-shape-1.style-2 {
		display: none;
	}
}

.collection-wrap-1 {
	padding: 120px 0px 55px 0px;
}

@media only screen and (max-width: 991px) {
	.collection-box-1 {
		margin-bottom: 24px;
	}
}

.collection-box-1:hover .item-img a img {
	-webkit-transform: scale(1.22) rotateY(0deg);
	transform: scale(1.22) rotateY(0deg);
}

.collection-box-1 .item-img {
	overflow: hidden;
	position: relative;
}

@media only screen and (max-width: 991px) {
	.collection-box-1 .item-img a {
		width: 100%;
	}
}

.collection-box-1 .item-img a img {
	-webkit-transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
	transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@media only screen and (max-width: 991px) {
	.collection-box-1 .item-img a img {
		width: 100%;
	}
}

.collection-box-1 .content {
	padding: 30px;
	background-color: #FCFAFA;
	text-align: center;
}

@media only screen and (max-width: 320px) {
	.collection-box-1 .content {
		text-align: right;
		padding: 15px;
	}
}

.collection-box-1 .content .title {
	font-size: 24px;
	line-height: 29px;
	margin-bottom: 0;
	font-weight: 500;
}

@media only screen and (max-width: 479px) {
	.collection-box-1 .content .title {
		font-size: 18px;
		line-height: 23px;
	}
}

.collection-box-1:hover .content .title a {
	color: var(--color-primary);
}

.collection-box-1:hover .content .title a .icon i {
	-webkit-animation: toRightFromLeft 0.5s forwards;
	animation: toRightFromLeft 0.5s forwards;
	color: var(--color-primary);
}

.collection-box-1 .content .title a {
	color: var(--color-secondary);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.collection-box-1 .content .title .icon {
	font-size: 20px;
	color: #000;
	margin-right: 10px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 479px) {
	.collection-box-1 .content .title .icon {
		font-size: 18px;
	}
}

.collection-box-1 .content .title .icon i {
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 991px) {
	.collection-offer-box-1 {
		height: 100%;
	}
}

.collection-offer-box-1 .item-img {
	position: relative;
}

@media (max-width: 1199px) {
	.collection-offer-box-1 .item-img {
		height: 436px;
	}
}

.collection-offer-box-1 .item-img img {
	width: 100%;
	object-fit: cover;
	height: 100%;
}

@media only screen and (max-width: 991px) {
	.collection-offer-box-1 .item-img img {
		height: 100%;
		-o-object-fit: cover;
		object-fit: cover;
	}
}

.collection-offer-box-1 .item-img:after {
	content: "";
	width: auto;
	height: auto;
	top: 60px;
	bottom: 60px;
	right: 60px;
	left: 60px;
	inset: 60px;
	background-color: rgba(0, 0, 0, 0.5);
	position: absolute;
}

@media only screen and (max-width: 1440px) {
	.collection-offer-box-1 .item-img:after {
		inset: 30px;
	}
}

@media only screen and (max-width: 1199px) {
	.collection-offer-box-1 .item-img:after {
		width: 100%;
		height: 100%;
		inset: 0;
	}
}

.collection-offer-box-1 .item-img .item-content {
	position: absolute;
	top: 50%;
	right: 50%;
	-webkit-transform: translateY(-50%) translateX(50%);
	transform: translateY(-50%) translateX(50%);
	z-index: 1;
	text-align: center;
	width: 100%;
}

.collection-offer-box-1 .item-img .item-content .line {
	height: 60px;
	width: 3px;
	display: inline-block;
	margin-bottom: 20px;
	position: relative;
}

.collection-offer-box-1 .item-img .item-content .line:before {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	height: 0;
	background-color: var(--color-primary);
	-webkit-transition: height 0.8s;
	transition: height 0.8s;
}

.collection-offer-box-1 .item-img .item-content .line.section-active::before {
	height: 100%;
}

.collection-offer-box-1 .item-img .item-content .section-heading.style-2 {
	margin-bottom: 0;
}

.collection-offer-box-1 .item-img .item-content .section-heading.style-2 .line {
	background-color: var(--color-primary);
}

.collection-offer-box-1 .item-img .item-content .section-heading.style-2 .off-tag {
	font-family: var(--font-title);
	font-weight: 600;
	font-size: 15px;
	line-height: 18px;
	text-align: center;
	color: var(--color-white);
	background-color: var(--color-primary);
	display: inline-block;
	padding: 3px 7px;
	margin-bottom: 10px;
	border-radius: 3px;
}

.collection-offer-box-1 .item-img .item-content .section-heading.style-2 .heading-title {
	color: var(--color-white);
	font-size: 50px;
	line-height: 65px;
}

@media screen and (min-width: 1200px) {
	.collection-offer-box-1 .item-img .item-content .section-heading.style-2 .heading-title {
		width: 500px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media only screen and (max-width: 1199px) {
	.collection-offer-box-1 .item-img .item-content .section-heading.style-2 .heading-title {
		font-size: 30px;
		line-height: 45px;
	}
}

.collection-offer-box-1 .item-img .item-content .section-heading.style-2 .item-button {
	margin-top: 35px;
}

@media only screen and (max-width: 1199px) {
	.collection-offer-box-1 .item-img .item-content .section-heading.style-2 .item-button {
		margin-top: 20px;
	}
}

.collection-wrap-2 {
	padding: 60px 0px 0px 0px;
}

.collection-Wrapper-1 {
	position: relative;
}

.collection-Wrapper-1 .navigation-area .swiper-button-next,
.collection-Wrapper-1 .navigation-area .swiper-button-prev {
	background: #FFFFFF;
	-webkit-box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.05);
	box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.05);
	width: 70px;
	height: 70px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 50%;
	top: 44%;
	-webkit-transform: translateY(-44%);
	transform: translateY(-44%);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

@media (max-width: 575px) {
	.collection-Wrapper-1 .navigation-area .swiper-button-next,
	.collection-Wrapper-1 .navigation-area .swiper-button-prev {
		width: 55px;
		height: 55px;
	}
}

.collection-Wrapper-1 .navigation-area .swiper-button-next:hover,
.collection-Wrapper-1 .navigation-area .swiper-button-prev:hover {
	background-color: var(--color-primary);
}

.collection-Wrapper-1 .navigation-area .swiper-button-next:hover i,
.collection-Wrapper-1 .navigation-area .swiper-button-prev:hover i {
	color: var(--color-white);
	-webkit-animation: toRightFromLeft 0.5s forwards;
	animation: toRightFromLeft 0.5s forwards;
}

.collection-Wrapper-1 .navigation-area .swiper-button-next i,
.collection-Wrapper-1 .navigation-area .swiper-button-prev i {
	color: #A1A1A1;
	font-size: 16px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.collection-Wrapper-1 .navigation-area .swiper-button-next::after,
.collection-Wrapper-1 .navigation-area .swiper-button-prev::after {
	display: none;
}

.collection-Wrapper-1 .navigation-area .swiper-button-next {
	left: -30px;
}

@media only screen and (max-width: 991px) {
	.collection-Wrapper-1 .navigation-area .swiper-button-next {
		left: 0;
	}
}

.collection-Wrapper-1 .navigation-area .swiper-button-prev {
	right: -30px;
}

@media only screen and (max-width: 991px) {
	.collection-Wrapper-1 .navigation-area .swiper-button-prev {
		right: 0;
	}
}

.collection-box-3:hover .item-img a img {
	-webkit-transform: scale(1.22) rotateY(0deg);
	transform: scale(1.22) rotateY(0deg);
}

.collection-box-3:hover .rt-content .woo-social ul li {
	-webkit-transform: translateX(0);
	transform: translateX(0);
	opacity: 1;
	visibility: visible;
}

.collection-box-3 .item-img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	overflow: hidden;
}

@media only screen and (max-width: 1199px) {
	.collection-box-3 .item-img {
		width: 100%;
	}
}

@media only screen and (max-width: 1199px) {
	.collection-box-3 .item-img a {
		width: 100%;
	}
}

.collection-box-3 .item-img a img {
	-webkit-transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
	transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
	-webkit-transform: scale(1);
	transform: scale(1);
}

@media only screen and (max-width: 1199px) {
	.collection-box-3 .item-img a img {
		width: 100%;
	}
}

.collection-box-3 .bg-2 {
	background-color: #F4FAFF;
}

.collection-box-3 .bg-3 {
	background-color: #F8F4FF;
}

.collection-box-3 .rt-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-top: 30px;
}

@media (max-width: 575px) {
	.collection-box-3 .rt-content {
		padding-bottom: 15px;
	}
}

@media (max-width: 480px) {
	.collection-box-3 .rt-content {
		display: inherit;
		text-align: center;
	}

	.collection-box-3 .rt-content .content {
		padding-bottom: 10px;
	}
}

@media only screen and (max-width: 320px) {
	.collection-box-3 .rt-content {
		display: block;
	}
}

.collection-box-3 .rt-content .content .title {
	font-weight: 400;
	font-size: 18px;
	line-height: 21px;
	margin-bottom: 10px;
}

.collection-box-3 .rt-content .content .title a {
	color: var(--color-secondary);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.collection-box-3 .rt-content .content .title a:hover {
	color: var(--color-primary);
}

.collection-box-3 .rt-content .content .price {
	font-weight: 700;
	font-size: 18px;
	line-height: 21px;
	color: #161F38;
}

@media only screen and (max-width: 320px) {
	.collection-box-3 .rt-content .content .price {
		margin-bottom: 10px;
	}
}

.collection-box-3 .rt-content .woo-social ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 5px;
	margin: 0;
	padding: 0;
	list-style: none;
}

@media (max-width: 480px) {
	.collection-box-3 .rt-content .woo-social ul {
		justify-content: center;
	}
}

.collection-box-3 .rt-content .woo-social ul li {
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateX(10px);
	transform: translateX(10px);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

@media (max-width: 991px) {
	.collection-box-3 .rt-content .woo-social ul li {
		-webkit-transform: translateX(0);
		transform: translateX(0);
		opacity: 1;
		visibility: visible;
	}
}

.collection-box-3 .rt-content .woo-social ul li:nth-child(1) {
	-webkit-transition-delay: 0.4s;
	transition-delay: 0.4s;
}

.collection-box-3 .rt-content .woo-social ul li:nth-child(2) {
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
}

.collection-box-3 .rt-content .woo-social ul li:nth-child(3) {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

.collection-box-3 .rt-content .woo-social ul li:nth-child(4) {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

.collection-box-3 .rt-content .woo-social ul li:last-child a {
	margin-bottom: 0;
}

.collection-box-3 .rt-content .woo-social ul li a {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	height: 45px;
	width: 45px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background-color: #FAFAFA;
	margin-bottom: 5px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	border-radius: 50%;
	border: none;
	position: relative;
}

.collection-box-3 .rt-content .woo-social ul li a:hover {
	background-color: var(--color-primary);
	border: none;
}

.collection-box-3 .rt-content .woo-social ul li a:hover i {
	color: var(--color-white);
}

.collection-box-3 .rt-content .woo-social ul li a i {
	color: var(--color-secondary);
	font-size: 15px;
	font-weight: 600;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.collection-box-3 .rt-content .woo-social ul li a.loading i {
	display: none;
}

.rt-product-block-4 .rt-content .woo-social ul li a.added_to_cart,
.rt-product-block-4 .rt-content .woo-social ul li a.added:after {
	display: none;
}

.rt-product-block-4 .rt-content .woo-social ul li a.loading {
	opacity: 1;
	padding: 0;
}

.rt-product-block-4 .rt-content .woo-social ul li a.loading:after {
	top: auto;
	left: auto;
	color: var(--color-secondary);
}

.collection-box-4 .item-img {
	display: block;
	width: 100%;
}

@media only screen and (max-width: 767px) {
	.collection-box-4 .item-img {
		height: auto;
	}
}

.collection-box-4 .item-img a {
	width: 100%;
}

.collection-box-4 .item-img a img {
	width: 100%;
}

@media screen and (min-width: 1200px) {
	.jewellery-video-area-1 {
		margin-left: 100px;
		margin-right: 100px;
	}
}

@media screen and (max-width: 991px) {
	.jewellery-box-1 {
		margin-bottom: 24px;
	}
}

.jewellery-box-1:hover .item-img img {
	-webkit-transform: scale(1.1) rotate(-5deg);
	transform: scale(1.1) rotate(-5deg);
}

.jewellery-box-1 .item-img {
	position: relative;
	overflow: hidden;
}

@media screen and (max-width: 991px) {
	.jewellery-box-1 .item-img .video-img {
		width: 100%;
	}
}

.jewellery-box-1 .item-img img {
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-webkit-transform: scale(1) rotate(0);
	transform: scale(1) rotate(0);
}

@media screen and (max-width: 991px) {
	.jewellery-box-1 .item-img img {
		width: 100%;
	}
}

.jewellery-box-1 .item-img .play-btn {
	position: absolute;
	top: 50%;
	right: 50%;
	-webkit-transform: translateY(-50%) translateX(50%);
	transform: translateY(-50%) translateX(50%);
}

@media screen and (max-width: 479px) {
	.jewellery-box-1 .item-img .play-btn {
		width: 70px;
		height: 70px;
	}
}

.jewellery-box-1 .item-img .play-btn:hover {
	background-color: var(--color-primary);
}

.jewellery-box-1 .item-img .play-btn:hover .play-icon {
	color: var(--color-white);
}

.jewellery-box-1 .item-img .play-btn .play-icon {
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 479px) {
	.jewellery-box-1 .item-img .play-btn .play-icon {
		font-size: 20px;
		line-height: 24px;
	}
}

.jewellery-box-1 .item-content {
	text-align: center;
	padding: 30px 60px 40px;
	background-color: var(--color-white);
}

@media only screen and (max-width: 479px) {
	.jewellery-box-1 .item-content {
		padding: 30px;
	}
}

.jewellery-box-1 .item-content .title {
	font-size: 30px;
	line-height: 36px;
	margin-bottom: 15px;
	font-weight: 500;
}

@media only screen and (max-width: 767px) {
	.jewellery-box-1 .item-content .title {
		font-size: 26px;
		line-height: 32px;
	}
}

@media only screen and (max-width: 479px) {
	.jewellery-box-1 .item-content .title {
		font-size: 24px;
		line-height: 30px;
	}
}

.jewellery-box-1 .item-content p {
	margin-bottom: 25px;
}

.jewellery-box-1 .item-content .item-button .btn {
	border: 1px solid #cacaca;
	color: var(--color-secondary);
	background-color: transparent;
}

.jewellery-box-1 .item-content .item-button .btn:hover {
	color: var(--color-white);
}

.jewellery-banner-wrap {
	background-repeat: no-repeat;
	padding: 200px 0px;
	background-size: cover;
	-webkit-transition: all 0.7s ease-in-out;
	transition: all 0.7s ease-in-out;
}

@media (min-width: 1200px) {
	.jewellery-banner-wrap.section-active::before,
	.jewellery-banner-wrap.section-active::after {
		width: 0;
	}

	.jewellery-banner-wrap::before {
		content: "";
		position: absolute;
		right: 0;
		top: 0;
		height: 100%;
		width: 100px;
		background: #f9f9f9;
		transition: all 0.7s ease-in-out;
	}

	.jewellery-banner-wrap::after {
		content: "";
		position: absolute;
		left: 0;
		top: 0;
		height: 100%;
		width: 100px;
		background: #f9f9f9;
		transition: all 0.7s ease-in-out;
	}
}

@media only screen and (max-width: 1199px) {
	.jewellery-banner-wrap {
		padding: 120px 0px;
	}
}

.jewellery-banner-content-1 .title-box p {
	font-family: var(--font-title);
	font-weight: 500;
	font-size: 22px;
	line-height: 29px;
	color: var(--color-white);
	margin-bottom: 10px;
	letter-spacing: 1.5px;
}

@media only screen and (max-width: 479px) {
	.jewellery-banner-content-1 .title-box p {
		font-size: 18px;
		line-height: 23px;
	}
}

.jewellery-banner-content-1 .title-box .title {
	font-weight: 700;
	font-size: 50px;
	line-height: 65px;
	color: var(--color-white);
	margin-bottom: 35px;
}

@media only screen and (max-width: 1199px) {
	.jewellery-banner-content-1 .title-box .title {
		font-size: 40px;
		line-height: 55px;
	}
}

@media only screen and (max-width: 479px) {
	.jewellery-banner-content-1 .title-box .title {
		font-size: 24px;
		line-height: 36px;
	}
}

.jewellery-banner-content-1 .title-box .jw-button a {
	font-family: var(--font-title);
	font-weight: 700;
	font-size: 15px;
	line-height: 18px;
	text-align: center;
	color: var(--color-secondary);
	display: inline-block;
	text-align: center;
	background-color: var(--color-white);
	padding: 15px 32px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	letter-spacing: 0.1em;
	border: none;
}

.jewellery-banner-content-1 .title-box .jw-button a:hover {
	background-color: var(--color-primary);
	color: var(--color-white);
}

.jewellery-collection-wrap-1 {
	padding-bottom: 120px;
}

.section-heading .sub-title {
	font-family: var(--font-title);
	font-weight: 600;
	font-size: 20px;
	line-height: 24px;
	color: var(--color-primary);
}

.jewellery-collection-wrap-1 .item-button {
	margin-top: 70px;
	text-align: center;
}

.jewellery-collection-wrap-2 {
	padding-top: 85px;
}

.jewellery-collection-1:hover .item-img a:after {
	visibility: visible;
	opacity: 1;
}

.jewellery-collection-1:hover .item-img a img {
	-webkit-transform: scale(1.1) rotate(-5deg);
	transform: scale(1.1) rotate(-5deg);
}

.jewellery-collection-1:hover .item-img .woo-social ul li {
	-webkit-transform: translateX(0);
	transform: translateX(0);
	opacity: 1;
	visibility: visible;
}

.jewellery-collection-1 .item-img {
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.jewellery-collection-1 .item-img > a {
	position: relative;
	display: block;
	z-index: 1;
}

@media only screen and (max-width: 767px) {
	.jewellery-collection-1 .item-img > a {
		width: 100%;
	}
}

.jewellery-collection-1 .item-img > a:after {
	content: "";
	height: 100%;
	width: 100%;
	background-color: rgba(22, 22, 25, 0.4);
	position: absolute;
	top: 0;
	right: 0;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	z-index: 2;
}

.jewellery-collection-1 .item-img > a img {
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-webkit-transform: scale(1) rotate(0);
	transform: scale(1) rotate(0);
}

@media only screen and (max-width: 767px) {
	.jewellery-collection-1 .item-img > a img {
		width: 100%;
	}
}

.jewellery-collection-1 .item-img .woo-social {
	position: absolute;
	right: 50%;
	-webkit-transform: translateX(50%);
	transform: translateX(50%);
	bottom: 30px;
	z-index: 3;
}

.jewellery-collection-1 .item-img .woo-social ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 5px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.jewellery-collection-1 .item-img .woo-social ul li {
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateX(-10px);
	transform: translateX(-10px);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

@media (max-width: 991px) {
	.jewellery-collection-1 .item-img .woo-social ul li {
		-webkit-transform: translateX(0);
		transform: translateX(0);
		opacity: 1;
		visibility: visible;
	}
}

.jewellery-collection-1 .item-img .woo-social ul li:nth-child(1) {
	-webkit-transition-delay: 0.4s;
	transition-delay: 0.4s;
}

.jewellery-collection-1 .item-img .woo-social ul li:nth-child(2) {
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
}

.jewellery-collection-1 .item-img .woo-social ul li:nth-child(3) {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

.jewellery-collection-1 .item-img .woo-social ul li:nth-child(4) {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

.jewellery-collection-1 .item-img .woo-social ul li:last-child a {
	margin-bottom: 0;
}

.jewellery-collection-1 .item-img .woo-social ul li a {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	height: 50px;
	width: 50px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background-color: var(--color-white);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	border: none;
	position: relative;
	border-radius: 0;
}

.jewellery-collection-1 .item-img .woo-social ul li a.added_to_cart {
	display: none;
}

.jewellery-collection-1 .item-img .woo-social ul li a:hover {
	background-color: var(--color-primary);
	border: none;
}

.jewellery-collection-1 .item-img .woo-social ul li a:hover i {
	color: var(--color-white);
}

.jewellery-collection-1 .item-img .woo-social ul li a i {
	color: var(--color-secondary);
	font-size: 15px;
	font-weight: 600;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.rt-product-block-5 .item-img .woo-social ul li a.added:after,
.rt-product-block-masonry .item-img .woo-social ul li a.added:after {
	content: none;
}

.rt-product-block-5 .item-img .woo-social ul li a.loading,
.rt-product-block-masonry .item-img .woo-social ul li a.loading {
	opacity: 1;
	padding: 0;
	color: var(--color-secondary);
}

.rt-product-block-5 .item-img .woo-social ul li a.loading:after,
.rt-product-block-masonry .item-img .woo-social ul li a.loading:after {
	top: 12px;
	right: 13px;
}

.rt-product-block-5 .item-img .woo-social ul li a.loading:after {
	top: 17px;
}

.jewellery-collection-1 .item-content {
	text-align: center;
	padding-top: 20px;
}

.jewellery-collection-1 .item-content .title {
	font-size: 18px;
	line-height: 26px;
	font-weight: 400;
	margin: 3px;
}

.jewellery-collection-1 .item-content .title a {
	color: var(--color-secondary);
}

.jewellery-collection-1 .item-content .title a:hover{
	color: var(--color-primary);
}

.jewellery-collection-1 .item-content .price {
	font-family: var(--font-title);
	font-weight: 700;
	font-size: 18px;
	line-height: 26px;
	color: var(--color-secondary);
}

.jewellery-collection-Wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 15px;
}

@media only screen and (max-width: 991px) {
	.jewellery-collection-1.style-2 {
		margin-top: 30px;
	}
}

@media only screen and (max-width: 767px) {
	.jewellery-collection-1.style-3 {
		margin-top: 30px;
	}
}

@media screen and (max-width: 1199px) {
	.jewellery-collection-2 {
		margin-bottom: 24px;
	}
}

.jewellery-collection-2:hover .item-img img {
	-webkit-transform: scale(1.11) rotate(-5deg);
	transform: scale(1.11) rotate(-5deg);
}

.jewellery-collection-2 .item-img {
	overflow: hidden;
	width: 100%;
}

.jewellery-collection-2 .item-img img {
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-webkit-transform: scale(1) rotate(0);
	transform: scale(1) rotate(0);
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.jewellery-collection-2 .item-content {
	background: #F3F3F3;
	padding: 45px 30px 35px 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media screen and (max-width: 479px) {
	.jewellery-collection-2 .item-content {
		display: block;
	}
}

.jewellery-collection-2 .item-content .title-box p {
	font-family: var(--font-title);
	font-weight: 500;
	font-size: 15px;
	line-height: 18px;
	letter-spacing: 0.1em;
	color: #777777;
	margin-bottom: 10px;
}

.jewellery-collection-2 .item-content .title-box .title {
	font-size: 30px;
	line-height: 40px;
	margin-bottom: 0;
}
.jewellery-collection-2 .item-content .title-box .title a{
	color: var(--color-secondary);
	-webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.jewellery-collection-2 .item-content .title-box .title a:hover{
	color: var(--color-primary);
}
@media screen and (min-width: 1200px) {
	.jewellery-collection-2 .item-content .title-box .title {
		width: 80%;
	}
}

@media only screen and (max-width: 479px) {
	.jewellery-collection-2 .item-content .title-box .title {
		font-size: 24px;
		line-height: 34px;
	}
}

@media only screen and (max-width: 4799px) {
	.jewellery-collection-2 .item-content .collection-button {
		margin-top: 10px;
	}
}

.jewellery-collection-2 .item-content .collection-button .collection-btn {
	color: var(--color-primary);
	font-weight: 600;
	font-size: 15px;
	line-height: 18px;
	display: block;
	position: relative;
}

.jewellery-collection-2 .item-content .collection-button .collection-btn::before {
	content: "";
	height: 1px;
	width: 0%;
	background-color: var(--color-primary);
	position: absolute;
	bottom: 0;
	right: 100%;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

@media only screen and (max-width: 479px) {
	.jewellery-collection-2 .item-content .collection-button .collection-btn::before {
		display: none;
	}
}

.jewellery-collection-2 .item-content .collection-button .collection-btn:hover {
	color: var(--color-primary);
}

.jewellery-collection-2 .item-content .collection-button .collection-btn:hover::before {
	opacity: 1;
	visibility: visible;
	width: 100%;
	right: 0%;
	-webkit-transition: width 0.4s ease;
	transition: width 0.4s ease;
}

.jewellery-collection-3 .item-img {
	position: relative;
}

.jewellery-collection-3 .item-img .rt-content {
	text-align: center;
	background-color: #fff;
	position: absolute;
	bottom: 50px;
	right: 50px;
	left: 50px;
	padding: 50px 90px;
}

@media only screen and (max-width: 1440px) {
	.jewellery-collection-3 .item-img .rt-content {
		padding: 50px;
	}
}

@media only screen and (max-width: 320px) {
	.jewellery-collection-3 .item-img .rt-content {
		padding: 28px;
	}
}

.jewellery-collection-3 .item-img .rt-content p {
	font-family: var(--font-title);
	font-weight: 600;
	font-size: 15px;
	line-height: 18px;
	letter-spacing: 0.1em;
	color: #777777;
	margin-bottom: 5px;
}

.jewellery-collection-3 .item-img .rt-content .title {
	font-size: 30px;
	line-height: 40px;
	margin-bottom: 20px;
}

@media only screen and (max-width: 479px) {
	.jewellery-collection-3 .item-img .rt-content .title {
		font-size: 24px;
		line-height: 34px;
	}
}

.jewellery-collection-3 .item-img .rt-content .item-button .btn.style-4 {
	width: auto;
}

.newsletter-wrap-1 {
	padding: 120px 0px;
}

.newsletter-inner {
	background-color: var(--color-white);
	padding: 105px 90px 100px 90px;
	position: relative;
}

@media only screen and (max-width: 767px) {
	.newsletter-inner {
		padding: 50px;
	}
}

@media only screen and (max-width: 479px) {
	.newsletter-inner {
		padding: 30px;
	}
}

@media only screen and (max-width: 767px) {
	.newsletter-inner .shape-img {
		display: none;
	}
}

.newsletter-inner .shape-img ul li {
	position: absolute;
}

.newsletter-inner .shape-img ul li:nth-child(1) {
	bottom: 0;
	right: 20%;
}

.newsletter-inner .shape-img ul li:nth-child(2) {
	left: 0;
	top: 0;
}

.newsletter-box-1 .section-heading {
	text-align: right;
	margin-bottom: 0;
	width: auto;
	height: auto;
}

.newsletter-box-1 .section-heading p {
	font-family: var(--font-title);
	font-weight: 600;
	font-size: 20px;
	line-height: 24px;
	color: var(--color-primary);
}

@media only screen and (max-width: 767px) {
	.newsletter-box-1 .section-heading p {
		font-size: 16px;
		margin-bottom: 10px;
	}
}

.newsletter-box-1 .section-heading .heading-title {
	font-size: 40px;
	line-height: 48px;
	margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
	.newsletter-box-1 .section-heading .heading-title {
		font-size: 30px;
		line-height: 36px;
	}
}

@media only screen and (max-width: 479px) {
	.newsletter-box-1 .section-heading .heading-title {
		font-size: 24px;
		line-height: 30px;
	}
}

.newsletter-box-1 .section-heading .color-percent {
	color: var(--color-primary);
	font-weight: 500;
}

.newsletter-inner .newsletter-box-2 p {
	font-size: 16px;
	line-height: 28px;
	margin-bottom: 25px;
}

@media screen and (min-width: 1200px) {
	.newsletter-inner .newsletter-box-2 p {
		padding-left: 170px;
	}
}

.newsletter-inner .newsletter-box-2 .input-group {
	width: 608px;
}

@media only screen and (max-width: 991px) {
	.jabee-subs-form-3.input-group {
		width: 500px;
	}
}

@media only screen and (max-width: 767px) {
	.jabee-subs-form-3.input-group {
		width: 100%;
		display: block;
	}
}

.frm-fluent-form .ff-t-container.jabee-subs-form-3.input-group {
	gap: 0;
}

.frm-fluent-form .ff-t-container.jabee-subs-form-3.input-group .ff-t-cell.ff-t-column-1 {
	width: 71%;
}

@media only screen and (max-width: 767px) {
	.frm-fluent-form .ff-t-container.jabee-subs-form-3.input-group .ff-t-cell.ff-t-column-1 {
		width: 100%;
	}

	.frm-fluent-form .ff-t-container.jabee-subs-form-3.input-group .ff-t-cell.ff-t-column-1 .ff-el-group {
		margin-bottom: 0;
	}
}

.frm-fluent-form .ff-t-container.jabee-subs-form-3.input-group .ff-t-cell.ff-t-column-2 {
	width: 27%;
}

@media only screen and (max-width: 767px) {
	.frm-fluent-form .ff-t-container.jabee-subs-form-3.input-group .ff-t-cell.ff-t-column-2 {
		width: 100%;
	}
}

.jabee-subs-form-3.input-group .form-control {
	height: 60px;
	border: 1px solid #D9D7D7;
	border-radius: 0;
}

.jabee-subs-form-3.input-group .form-control:focus {
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	border-color: var(--color-secondary);
}

.jabee-subs-form-3.input-group .btn-outline-secondary {
	height: 60px;
	width: 185px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-weight: 700;
	font-size: 15px;
	color: var(--color-white);
	background-color: var(--color-primary);
	border: 1px solid var(--color-primary);
	border-radius: 0;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	letter-spacing: 0.1em;
}

@media only screen and (max-width: 479px) {
	.jabee-subs-form-3.input-group .btn-outline-secondary {
		width: 100%;
		margin-top: 10px;
	}
}
@media only screen and (max-width: 1024px) {
	.home7-subs-form .jabee-subs-form-3.input-group .btn-outline-secondary{
		width: 100%;
	}
}

.jabee-subs-form-3.input-group .btn-outline-secondary:hover {
	background-color: var(--color-secondary);
	color: var(--color-white);
	border: 1px solid var(--color-secondary);
	opacity: 1;
}

.jabee-subs-form-3.input-group .btn-outline-secondary:focus {
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	border-color: var(--color-secondary);
}

.classic-collection-wrap-1 {
	padding: 120px 0px 0px 0px;
	position: relative;
}

.classic-collection-wrap-1 .shape {
	position: absolute;
	top: 50px;
	right: 0;
}

@media only screen and (max-width: 1199px) {
	.classic-collection-wrap-1 .shape {
		display: none;
	}
}

.cl-collection-box-1 .item-img {
	border-radius: 100px 0px 0px 100px;
	position: relative;
}

.cl-collection-box-1 .item-img:after {
	content: "";
	height: 100%;
	width: 100%;
	background: rgba(18, 41, 247, 0.5);
	border-radius: 100px 0px 0px 100px;
	position: absolute;
	top: 0;
	right: 0;
}

.cl-collection-box-1 .item-img img {
	border-radius: 100px 0px 0px 100px;
	width: 100%;
}

.cl-collection-box-1 .item-img .shape {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 30px;
	left: 30px;
	text-align: center;
	mix-blend-mode: overlay;
}

.cl-collection-box-1 .item-img .item-title {
	width: 100%;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%) !important;
	transform: translateY(-50%) !important;
	right: 0px;
	z-index: 1;
	text-align: center;
}

.cl-collection-box-1 .item-img .item-title .title {
	font-weight: 400;
	font-size: 60px;
	line-height: 78px;
	color: var(--color-white);
}

@media only screen and (max-width: 1199px) {
	.cl-collection-box-1 .item-img .item-title .title {
		font-size: 40px;
		line-height: 58px;
	}
}

@media only screen and (max-width: 320px) {
	.cl-collection-box-1 .item-img .item-title .title {
		font-size: 30px;
		line-height: 48px;
	}
}

.cl-collection-box-1 .item-img .item-title .number {
	font-style: italic;
	font-weight: 400;
	font-size: 105px;
	line-height: 126px;
	text-align: center;
	color: var(--color-primary);
}

@media only screen and (max-width: 1199px) {
	.cl-collection-box-1 .item-img .item-title .number {
		font-size: 60px;
		line-height: 72px;
	}
}

@media only screen and (max-width: 320px) {
	.cl-collection-box-1 .item-img .item-title .number {
		font-size: 50px;
		line-height: 62px;
	}
}

.cl-collection-box-2 .section-heading {
	height: auto;
	width: auto;
	margin-bottom: 0;
	text-align: right;
}

.cl-collection-box-2 .section-heading .subtitle {
	font-family: var(--font-title);
	font-weight: 600;
	font-size: 20px;
	line-height: 24px;
	color: var(--color-primary);
	margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
	.cl-collection-box-2 .section-heading .subtitle {
		font-size: 18px;
		line-height: 22px;
	}
}

@media only screen and (max-width: 479px) {
	.cl-collection-box-2 .section-heading .subtitle {
		font-size: 16px;
		line-height: 20px;
	}
}

.cl-collection-box-2 .section-heading .heading-title {
	font-size: 40px;
	line-height: 55px;
}

@media screen and (min-width: 1200px) {
	.cl-collection-box-2 .section-heading .heading-title {
		padding-left: 100px;
	}
}

@media only screen and (max-width: 767px) {
	.cl-collection-box-2 .section-heading .heading-title {
		font-size: 30px;
		line-height: 36px;
	}
}

@media only screen and (max-width: 479px) {
	.cl-collection-box-2 .section-heading .heading-title {
		font-size: 24px;
		line-height: 30px;
	}
}

.cl-collection-box-2 .section-heading p {
	margin-bottom: 30px;
}

.cl-collection-box-2 .section-heading .item-button .btn {
	background-color: var(--color-primary);
	color: var(--color-white);
	border: 0;
}

.cl-product-wrap-1 {
	padding: 120px 0px 0px 0px;
}

.cl-product-wrap-1 .section-heading {
	margin-bottom: 30px;
	height: auto;
}

.cl-product-wrap-1 .tab--style--3 .nav-tabs {
	border-bottom: 0;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 25px;
}

.cl-product-wrap-1 .tab--style--3 .nav-tabs .nav-item {
	display: inline-block;
	margin-left: 65px;
}

@media only screen and (max-width: 767px) {
	.cl-product-wrap-1 .tab--style--3 .nav-tabs .nav-item {
		margin-left: 30px;
	}
}

@media only screen and (max-width: 479px) {
	.cl-product-wrap-1 .tab--style--3 .nav-tabs .nav-item {
		margin-left: 20px;
	}
}

.cl-product-wrap-1 .tab--style--3 .nav-tabs .nav-item:last-child {
	margin-left: 0;
}

.cl-product-wrap-1 .tab--style--3 .nav-tabs .nav-item .nav-link {
	display: inline-block;
	font-size: 18px;
	font-weight: 500;
	font-family: var(--font-title);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	border-radius: 0;
	padding: 3px 10px;
	border: 0;
	color: #949393;
	background-color: transparent;
}

.cl-product-wrap-1 .tab--style--3 .nav-tabs .nav-item .active {
	color: #000;
	font-weight: 500;
}

.rt-el-product-isotope.rtin-layout-3 .rtin-navs-area .rtin-navs {
	position: relative;
	text-align: center;
	margin-bottom: 30px;
}

.rt-el-product-isotope.rtin-layout-3 .rtin-navs-area .rtin-navs a {
	display: inline-block;
	font-size: 18px;
	font-weight: 500;
	font-family: var(--font-title);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	border-radius: 0;
	padding: 3px 10px;
	border: 0;
	color: #949393;
	background-color: transparent;
	margin-left: 60px;
}

.rt-el-product-isotope.rtin-layout-3 .rtin-navs-area .rtin-navs a:last-child {
	margin-left: 0;
}

.rt-el-product-isotope.rtin-layout-3 .rtin-navs-area .rtin-navs a.current {
	color: #000;
	font-weight: 500;
}

@media only screen and (max-width: 767px) {
	.rt-el-product-isotope.rtin-layout-3 .rtin-navs-area .rtin-navs a {
		margin-left: 30px;
	}
}

@media only screen and (max-width: 479px) {
	.rt-el-product-isotope.rtin-layout-3 .rtin-navs-area .rtin-navs a {
		margin-left: 20px;
	}
}

.rt-el-product-isotope.rtin-layout-4 .rtin-navs-area .rtin-navs {
	position: relative;
	text-align: center;
	margin-bottom: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
}

.rt-el-product-isotope.rtin-layout-4 .rtin-navs-area .rtin-navs a {
	color: #B8B8B8;
	display: inline-block;
	font-size: 24px;
	font-weight: 600;
	font-family: var(--font-title);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	border-radius: 0;
	margin: 0 13px;
	border: 0;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	line-height: 1;
}

.rt-el-product-isotope.rtin-layout-4 .rtin-navs-area .rtin-navs a.current {
	color: var(--color-secondary);
	border-bottom: 1px solid var(--color-secondary);
}

.cl-product-box-1 {
	border-left: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	padding: 40px 0px 55px 0px;
	position: relative;
}

@media only screen and (max-width: 991px) {
	.cl-product-box-1 {
		border: 1px solid #ccc;
	}
}

.cl-product-box-1:hover .item-img a img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.cl-product-box-1:hover .btn-list {
	top: 50%;
	-webkit-transform: translate(50%, -50%);
	transform: translate(50%, -50%);
	visibility: visible;
	opacity: 1;
}

.cl-product-box-1 .item-img {
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cl-product-box-1 .item-img a img {
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.cl-product-box-1 .item-content {
	text-align: center;
	padding: 25px 0px 0px 0px;
}

.cl-product-box-1 .item-content p {
	font-weight: 500;
	font-size: 15px;
	line-height: 1;
	color: #868686;
	margin-bottom: 0;
	text-transform: uppercase;
}

.cl-product-box-1 .item-content p a {
	color: #868686;
}

.cl-product-box-1 .item-content .title a {
	font-weight: 400;
	font-size: 22px;
	color: var(--color-secondary);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.cl-product-box-1 .item-content .title a:hover {
	color: var(--color-primary);
}

.cl-product-box-1 .item-content .price {
	font-family: var(--font-title);
	font-weight: 700;
	font-size: 20px;
	line-height: 18px;
	color: var(--color-secondary);
}

.cl-product-box-1 .item-icon {
	position: absolute;
	top: 20px;
	left: 20px;
}

.cl-product-box-1 .item-icon a {
	height: 50px;
	width: 50px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 50%;
	background-color: #F2F2F2;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	font-size: 15px;
	z-index: 1;
}

.cl-product-box-1 .item-icon a i {
	color: var(--color-secondary);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.cl-product-box-1 .item-icon a:hover {
	background-color: var(--color-secondary);
}

.cl-product-box-1 .item-icon a:hover i {
	color: var(--color-white);
}

.cl-product-box-1 .item-button {
	position: absolute;
	top: 30px;
	right: 30px;
	background-color: var(--color-primary);
	color: var(--color-white);
	padding: 3px 15px;
	height: 27px;
	font-size: 15px;
	font-weight: 500;
	color: #FEFEFE;
}

.cl-product-box-1 .btn-list {
	position: absolute;
	right: 50%;
	top: 70%;
	-webkit-transform: translate(50%, -70%);
	transform: translate(50%, -70%);
	opacity: 0;
	visibility: hidden;
	width: 100%;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
}

@media (max-width: 991px) {
	.cl-product-box-1 .btn-list {
		top: 50%;
		-webkit-transform: translate(50%, -50%);
		transform: translate(50%, -50%);
		visibility: visible;
		opacity: 1;
	}
}

.cl-product-box-1 .btn-list ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.cl-product-box-1 .btn-list ul li a {
	display: inline-block;
	border: 1px solid var(--color-secondary);
	font-weight: 500;
	font-size: 15px;
	line-height: 30px;
	text-align: center;
	color: var(--color-secondary);
	padding: 10px 20px;
	background-color: #fff;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	letter-spacing: 0.1em;
	border-radius: 0;
	position: relative;
	text-transform: uppercase;
	width: 160px;
}

.cl-product-box-1 .btn-list ul li a.added {
	display: none;
}

.cl-product-box-1 .btn-list ul li a.loading:after {
	top: 10px;
	left: 3px;
}

@media only screen and (max-width: 320px) {
	.cl-product-box-1 .btn-list ul li a {
		font-weight: 400;
		padding: 10px;
	}
}

.cl-product-box-1 .btn-list ul li a:hover {
	background-color: var(--color-secondary);
	color: var(--color-white);
}

.cl-product-box-1:last-child {
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
	border-bottom: 0;
	border-right: 0;
}

@media only screen and (max-width: 991px) {
	.cl-product-box-1:last-child {
		border: 1px solid #ccc;
		border-bottom: 0;
	}
}

.cl-product-box-1.style-2 {
	border-left: 0;
}

.rt-el-isotope-wrapper[class^="col-"]:nth-child(3) .rt-product-block-1 {
	background-color: red;
}

@media only screen and (min-width: 992px) {
	.rt-el-product-isotope.rtin-layout-3 [class^="col-"]:nth-child(3) .cl-product-box-1,
	.rt-el-product-isotope.rtin-layout-3 [class^="col-"]:nth-child(6) .cl-product-box-1,
	.rt-el-product-isotope.rtin-layout-3 [class^="col-"]:nth-child(9) .cl-product-box-1 {
		border-left: 0;
	}
}

@media only screen and (max-width: 991px) {
	.cl-product-box-1.style-2 {
		border: 1px solid #ccc;
	}
}

.cl-feature-wrap-1 {
	padding: 60px 0px;
}

.cl-feature-box-1 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 13px;
}

@media only screen and (max-width: 991px) {
	.cl-feature-box-1 {
		margin-bottom: 24px;
	}
}

.cl-feature-box-1:hover .item-img img {
	-webkit-transform: translateY(-10px);
	transform: translateY(-10px);
}

.cl-feature-box-1 .item-img img {
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-webkit-transform: translateY(0px);
	transform: translateY(0px);
}

.cl-feature-box-1 .content {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.cl-feature-box-1 .content .title {
	font-size: 24px;
	line-height: 29px;
	color: #000000;
	margin-bottom: 5px;
	font-weight: 600;
}

.cl-feature-box-1 .content p {
	margin-bottom: 0;
}

.sidebar-page-one {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.sidebar-content-one {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-right: 435px;
	overflow: hidden;
}

@media only screen and (max-width: 1199px) {
	.sidebar-content-one {
		margin-right: 315px;
	}
}

@media only screen and (max-width: 991px) {
	.sidebar-content-one {
		margin-right: 0;
	}
}

.nav-bar-header-one {
	background: transparent;
	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;
	padding: 45px 40px 40px 40px;
}

.nav-bar-header-one .header-action-items .inline-list {
	gap: 15px;
}

.sd-search-wrap {
	padding: 15px 40px;
	margin-bottom: 100px;
}

.sd-search-wrap .input-group .form-control {
	height: 50px;
	color: var(--color-secondary);
	background-color: #f8f8f8;
	border: 0;
	border-radius: 0;
}

.sd-search-wrap .input-group .form-control:focus {
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.sd-search-wrap .input-group .form-control::-webkit-input-placeholder {
	color: #7A7979;
}

.sd-search-wrap .input-group .form-control::-moz-placeholder {
	color: #7A7979;
}

.sd-search-wrap .input-group .form-control:-ms-input-placeholder {
	color: #7A7979;
}

.sd-search-wrap .input-group .form-control::-ms-input-placeholder {
	color: #7A7979;
}

.sd-search-wrap .input-group .form-control::placeholder {
	color: #7A7979;
}

.sd-search-wrap .input-group .btn-outline-secondary {
	height: 50px;
	color: var(--color-secondary);
	background-color: #f8f8f8;
	border: 0;
	border-radius: 0;
}

.sd-search-wrap .input-group .btn-outline-secondary:focus {
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.sidebar-main .sidebar-menu-content .header-bottom{
	position: fixed;
	bottom: 70px;
}

.sidebar-social {
	padding-right: 40px;
	margin-top: 120px;
}

.sidebar-social .social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sidebar-social .social li a {
	font-size: 18px;
	line-height: 18px;
	overflow: hidden;
}

.sidebar-social .social li a i {
	color: #7D7D7D;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.sidebar-social .social li a:hover i {
	-webkit-animation: toBottomFromTop 0.5s forwards;
	animation: toBottomFromTop 0.5s forwards;
	color: #F5123B;
}

.sidebar-color {
	background: #FFFFFF;
	-webkit-box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.05);
	box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.05);
}

@media only screen and (min-width: 768px) {
	.sidebar-expand-md {
		position: static;
		overflow: visible;
	}
}

.sidebar-menu-one {
	width: 435px;
	position: fixed;
	top: 0;
	bottom: 0;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	z-index: 10;
}

@media only screen and (max-width: 1199px) {
	.sidebar-menu-one {
		width: auto;
	}
}

@media only screen and (max-width: 991px) {
	.sidebar-menu-one {
		display: none;
	}
}

.sidebar-menu-one .sidebar-menu-content {
	border: none;
	border-radius: 0;
	background-color: transparent;
	padding-bottom: 3rem;
	position: fixed;
	top: 68px;
	bottom: 0;
	overflow-y: scroll;
	width: inherit;
	height: 100vh;
}

@media only screen and (min-width: 768px) {
	.sidebar-menu-one .sidebar-menu-content {
		position: static;
		overflow: visible;
		width: auto;
	}
}

.sidebar-menu-one .sidebar-menu-content .header-middle{
	max-height: calc(100% - 400px);
	overflow-y: auto;
}

.sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin: 0;
}

.sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu > .menu-item > a {
	position: relative;
	padding: 15px 40px;
	color: var(--color-secondary);
	font-size: 20px;
	font-weight: 500;
	font-family: var(--font-title);
	width: 100%;
}

.sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu > .menu-item > .nav-link span {
	font-size: 15px;
	color: #9ea8b5;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu > li.menu-item-has-children >a:after,
.sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu > .menu-item .sub-menu > li.menu-item-has-children > a:after {
	content: "\f107";
	font-family: "Font Awesome 6 Free";
	font-size: 12px;
	font-weight: 700;
	color: var(--color-secondary);
	position: absolute;
	left: 80px;
	top: 50%;
	-webkit-transform: translateY(-50%) rotate(0deg);
	transform: translateY(-50%) rotate(0deg);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu > .menu-item .sub-menu {
	display: none;
	padding: 10px 0;
	margin: 0;
	list-style: none;
}

.sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu > .menu-item .sub-menu > .menu-item a {
	position: relative;
	font-size: 15px;
	color: var(--color-secondary);
	padding: 8px 60px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	display: inline-block;
	width: 100%;
}
.sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu > .menu-item .sub-menu > .menu-item a:after{
	content: "\f105";
	font-family: "Font Awesome 6 Free";
	font-size: 12px;
	font-weight: 700;
	color: var(--color-secondary);
	position: absolute;
	right: 45px;
	top: 50%;
	-webkit-transform: translateY(-50%) rotate(0deg);
	transform: translateY(-50%) rotate(0deg);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu > .menu-item .sub-menu > .menu-item a:hover:after{
	color: var(--color-primary);
	right: 50px;
}
.sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu > .menu-item .sub-menu > li.menu-item-has-children > a:after{
	left: 80px;
	right: auto;
}
.sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu > .menu-item .sub-menu > li.menu-item-has-children > a:hover:after{
	right: auto;
	left: 80px;
}
.sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu > .menu-item .sub-menu > .menu-item a strong{
	font-weight: normal;
}

.sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu > .menu-item .sub-menu > .menu-item a:hover {
	color: var(--color-primary);
	padding: 8px 65px;
}

.sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu > .menu-item .sub-menu > .menu-item a i {
	margin-left: 10px;
}
.sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu > .menu-item .sub-menu > .menu-item > .sub-menu > .menu-item a{
	padding-right: 80px;
}
.sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu > .menu-item .sub-menu > .menu-item > .sub-menu > .menu-item a:hover{
	padding-right: 85px;
}
.sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu > .menu-item .sub-menu > .menu-item > .sub-menu > .menu-item a:after{
	right: 65px;
}
.sidebar-menu-one .sidebar-menu-content .nav-sidebar-menu > .menu-item .sub-menu > .menu-item > .sub-menu > .menu-item a:hover:after{
	right: 70px;
}
.sd-gallery-wrap-1 {
	padding-right: 100px;
}

@media only screen and (max-width: 1440px) {
	.sd-gallery-wrap-1 {
		padding: 50px;
	}
}

@media only screen and (max-width: 479px) {
	.sd-gallery-wrap-1 {
		padding: 30px;
	}
}

.sd-gallery-wrap-1 .section-heading {
	text-align: right;
	width: auto;
	height: auto;
}

@media screen and (min-width: 1200px) {
	.sd-gallery-wrap-1 .section-heading p {
		width: 475px;
	}
}

@media only screen and (min-width: 1200px) {
	.sd-gallery-box-1 {
		margin-left: -70px;
	}
}

.sd-gallery-box-1 .sd-img-box {
	position: relative;
	overflow: hidden;
}

.sd-gallery-box-1 .sd-img-box:hover a::before {
	opacity: 0.62;
	visibility: visible;
	width: 100%;
	-webkit-transition: width 0.4s ease;
	transition: width 0.4s ease;
	right: 0%;
}

.sd-gallery-box-1 .sd-img-box:hover a .item-icon i {
	visibility: visible;
	opacity: 1;
	top: 50%;
	-webkit-transform: translate(50%, -50%);
	transform: translate(50%, -50%);
	background-color: var(--color-primary);
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.sd-gallery-box-1 .sd-img-box a {
	width: 100%;
	position: relative;
}

.sd-gallery-box-1 .sd-img-box a::before {
	content: "";
	height: 100%;
	width: 0%;
	background-color: rgb(0, 0, 0);
	position: absolute;
	top: 0;
	right: 100%;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.sd-gallery-box-1 .sd-img-box a img {
	width: 100%;
}

.sd-gallery-box-1 .sd-img-box a .item-icon i {
	position: absolute;
	top: 70%;
	width: 40px;
	height: 40px;
	color: #fff;
	right: 50%;
	-webkit-transform: translate(50%, -70%);
	transform: translate(50%, -70%);
	text-align: center;
	line-height: 40px;
	background: transparent;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	z-index: 4;
	visibility: hidden;
	opacity: 0;
	border-radius: 50%;
}

@media only screen and (max-width: 991px) {
	.sd-gallery-box-1 .sd-img-box.style-2 {
		margin-top: 18px;
	}
}

.sd-newsletter-wrap-1 {
	padding: 120px 0px 0px 0px;
}

.sd-newsletter-box-1 {
	position: relative;
}

.sd-newsletter-box-1 .item-img {
	position: relative;
}

.sd-newsletter-box-1 .item-img::after {
	content: "";
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.25);
	position: absolute;
	top: 0;
	right: 0;
}

.sd-newsletter-box-1 .item-img img {
	width: 100%;
}

.sd-newsletter-box-1 .item-img .item-content {
	position: absolute;
	top: 50%;
	right: 50%;
	-webkit-transform: translateY(-50%) translateX(50%);
	transform: translateY(-50%) translateX(50%);
	z-index: 1;
}

.sd-newsletter-box-1 .item-img .item-content p {
	font-family: var(--font-title);
	font-weight: 600;
	font-size: 16px;
	line-height: 19px;
	letter-spacing: 0.1em;
	color: var(--color-white);
	text-align: center;
	margin-bottom: 10px;
}

@media screen and (max-width: 1999px) {
	.sd-newsletter-box-1 .item-img .item-content p {
		display: none;
	}
}

.sd-newsletter-box-1 .item-img .item-content .title {
	font-size: 40px;
	line-height: 48px;
	color: var(--color-white);
	margin-bottom: 25px;
	text-align: center;
}

@media screen and (min-width: 1441px) {
	.sd-newsletter-box-1 .item-img .item-content .title {
		padding: 0px 200px;
	}
}

@media screen and (max-width: 1999px) {
	.sd-newsletter-box-1 .item-img .item-content .title {
		margin-bottom: 0;
	}
}

@media screen and (max-width: 991px) {
	.sd-newsletter-box-1 .item-img .item-content .title {
		font-size: 26px;
		line-height: 34px;
	}
}

@media screen and (max-width: 1999px) {
	.sd-newsletter-box-1 .item-img .item-content .input-group {
		display: none;
	}
}

.sd-newsletter-box-1 .item-img .item-content .input-group .form-control {
	height: 60px;
	color: var(--color-secondary);
	border: 1px solid #999F9D;
	background-color: transparent;
	border-radius: 0;
	font-size: 16px;
	font-weight: 400;
}

.sd-newsletter-box-1 .item-img .item-content .input-group .form-control:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
	outline: 0;
	border-color: var(--color-white);
}

.sd-newsletter-box-1 .item-img .item-content .input-group .form-control::-webkit-input-placeholder {
	color: #F0F0F0;
}

.sd-newsletter-box-1 .item-img .item-content .input-group .form-control::-moz-placeholder {
	color: #F0F0F0;
}

.sd-newsletter-box-1 .item-img .item-content .input-group .form-control:-ms-input-placeholder {
	color: #F0F0F0;
}

.sd-newsletter-box-1 .item-img .item-content .input-group .form-control::-ms-input-placeholder {
	color: #F0F0F0;
}

.sd-newsletter-box-1 .item-img .item-content .input-group .form-control::placeholder {
	color: #F0F0F0;
}

.sd-newsletter-box-1 .item-img .item-content .input-group .btn-outline-secondary {
	height: 60px;
	color: var(--color-white);
	font-weight: 700;
	font-size: 18px;
	line-height: 24px;
	text-align: center;
	display: inline-block;
	background-color: var(--color-primary);
	border-radius: 0;
	border: 0;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	border: 1px solid var(--color-primary);
	letter-spacing: 0.1em;
	padding: 0px 20px;
}

.sd-newsletter-box-1 .item-img .item-content .input-group .btn-outline-secondary:hover {
	color: var(--color-primary);
	background-color: var(--color-white);
	border: 1px solid var(--color-white);
}

.sd-newsletter-box-1 .item-img .item-content .input-group .btn-outline-secondary:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
	outline: 0;
}

.sd-testimonial-wrap-3 .section-heading {
	text-align: right;
	width: auto;
	height: auto;
}

@media screen and (min-width: 1200px) {
	.sd-testimonial-wrap-3 .section-heading p {
		max-width: 475px;
	}
}

@media only screen and (max-width: 991px) {
	.sd-testimonial-wrap-3 .sd-testimonial-1 .navigation-area-1 {
		visibility: hidden;
	}
}

.sd-products-wrap-1 {
	padding: 120px 100px 0px 0px;
}

@media only screen and (max-width: 1440px) {
	.sd-products-wrap-1 {
		padding: 50px;
	}
}

@media only screen and (max-width: 479px) {
	.sd-products-wrap-1 {
		padding: 30px;
	}
}

.sd-products-wrap-1 .section-heading {
	text-align: right;
	height: auto;
	width: auto;
}

@media screen and (min-width: 1200px) {
	.sd-products-wrap-1 p {
		width: 475px;
	}
}

.sd-product-box-1:hover .item-img a img {
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}

.sd-product-box-1:hover .item-img .item-button {
	bottom: 55px;
}

.sd-product-box-1:hover .item-img .item-button .btn {
	visibility: visible;
	opacity: 1;
}

.sd-product-box-1:hover .item-img .woo-social ul li {
	-webkit-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
}

.sd-product-box-1 .item-img {
	overflow: hidden;
	position: relative;
	position: relative;
}

.sd-product-box-1 .item-img > a {
	width: 100%;
}

.sd-product-box-1 .item-img > a img {
	width: 100%;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all 0.6s ease-out;
	transition: all 0.6s ease-out;
}

.sd-product-box-1 .item-img .item-button {
	position: absolute;
	right: 50%;
	-webkit-transform: translateX(50%);
	transform: translateX(50%);
	bottom: 0px;
	-webkit-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
	text-align: center;
	width: 100%;
}

.sd-product-box-1 .item-img .item-button .btn {
	background-color: var(--color-secondary);
	color: var(--color-white);
	border: 0;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
	padding: 10px 30px;
	line-height: 28px;
}

.sd-product-box-1 .item-img .item-button .btn:after {
	background-color: var(--color-primary);
}

.sd-product-box-1 .item-img .woo-social {
	position: absolute;
	top: 20px;
	left: 20px;
}

.sd-product-box-1 .item-img .woo-social ul li {
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.sd-product-box-1 .item-img .woo-social ul li:nth-child(1) {
	-webkit-transition-delay: 0.4s;
	transition-delay: 0.4s;
}

.sd-product-box-1 .item-img .woo-social ul li:nth-child(2) {
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
}

.sd-product-box-1 .item-img .woo-social ul li:nth-child(3) {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

.sd-product-box-1 .item-img .woo-social ul li:nth-child(4) {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

.sd-product-box-1 .item-img .woo-social ul li:last-child a {
	margin-bottom: 0;
}

.sd-product-box-1 .item-img .woo-social ul li a {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	height: 45px;
	width: 45px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background-color: #fff;
	margin-bottom: 5px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	border-radius: 50%;
}

.sd-product-box-1 .item-img .woo-social ul li a:hover {
	background-color: var(--color-primary);
}

.sd-product-box-1 .item-img .woo-social ul li a:hover i {
	color: var(--color-white);
}

.sd-product-box-1 .item-img .woo-social ul li a i {
	color: var(--color-secondary);
	font-size: 15px;
	font-weight: 600;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.sd-product-box-1 .item-content {
	text-align: center;
	background-color: var(--color-white);
	padding: 15px 0px;
}

.sd-product-box-1 .item-content .title {
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.sd-product-box-1 .item-content .title a {
	color: var(--color-secondary);
}

.sd-product-box-1 .item-content .title a:hover {
	color: var(--color-primary);
}

.sd-product-box-1 .item-content .price {
	font-family: var(--font-title);
	font-weight: 700;
	font-size: 18px;
	line-height: 24px;
	color: var(--color-secondary);
}

@media only screen and (max-width: 991px) {
	.sd-product-box-1.style-2 {
		margin-top: 18px;
	}
}

.sd-hero-wrap-1 .sd-hero-layout-1 {
	padding: 0px 130px;
}

@media only screen and (max-width: 1440px) {
	.sd-hero-wrap-1 .sd-hero-layout-1 {
		padding: 0px 50px 0px 0px;
	}
}

@media only screen and (max-width: 1199px) {
	.sd-hero-wrap-1 .sd-hero-layout-1 {
		padding: 50px;
	}
}

.sd-hero-wrap-1 .sd-hero-layout-1 .rt-tag {
	margin-bottom: 17px;
	border: 1px solid var(--color-primary);
	color: var(--color-primary);
	font-weight: 500;
	font-size: 15px;
	line-height: 20px;
	display: inline-block;
	letter-spacing: 0.1em;
	padding: 7px 14px 6px 14px;
}

.sd-hero-wrap-1 .sd-hero-layout-1 .title {
	font-weight: 700;
	font-size: 75px;
	line-height: 95px;
	margin-bottom: 23px;
}

@media only screen and (max-width: 1440px) {
	.sd-hero-wrap-1 .sd-hero-layout-1 .title {
		font-size: 60px;
		line-height: 80px;
	}
}

.sd-hero-wrap-1 .sd-hero-layout-1 .button {
	display: inline-block;
	font-family: var(--font-title);
	font-weight: 700;
	font-size: 18px;
	line-height: 22px;
	color: var(--color-secondary);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	position: absolute;
}

.sd-hero-wrap-1 .sd-hero-layout-1 .button::before {
	content: "";
	height: 1px;
	width: 0%;
	background-color: var(--color-primary);
	position: absolute;
	bottom: 0;
	right: 100%;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

.sd-hero-wrap-1 .sd-hero-layout-1 .button:hover {
	color: var(--color-primary);
}

.sd-hero-wrap-1 .sd-hero-layout-1 .button:hover::before {
	visibility: visible;
	opacity: 1;
	right: 0%;
	width: 100%;
	-webkit-transition: width 0.4s ease;
	transition: width 0.4s ease;
}

.sd-hero-wrap-1 .sd-hero-layout-2 .item-img img {
	width: 100%;
}

.massonary-wrap-1 {
	padding: 40px 0px 120px;
}

.massonary-wrap-1 .item-button {
	text-align: center;
	margin-top: 60px;
}

.massonary-wrap-1 .item-button .btn {
	background-color: transparent;
	border: 1px solid var(--color-secondary);
	color: var(--color-secondary);
}

.massonary-wrap-1 .item-button .btn svg {
	margin-right: 5px;
}

.massonary-wrap-1 .item-button .btn:hover {
	color: var(--color-white);
}

@media only screen and (max-width: 1440px) {
	.massonary-box-1 {
		height: 100%;
	}
}

.massonary-box-1:hover .item-img a img {
	-webkit-transform: scale(1);
	transform: scale(1);
}

.massonary-box-1 .item-img {
	position: relative;
	overflow: hidden;
}

@media only screen and (max-width: 1440px) {
	.massonary-box-1 .item-img {
		height: 100%;
	}
}

.massonary-box-1 .item-img a {
	width: 100%;
}

@media only screen and (max-width: 1440px) {
	.massonary-box-1 .item-img a {
		height: 100%;
	}
}

.massonary-box-1 .item-img a img {
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	width: 100%;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

@media only screen and (max-width: 1440px) {
	.massonary-box-1 .item-img a img {
		height: 100%;
		-o-object-fit: cover;
		object-fit: cover;
		-o-object-position: center;
		object-position: center;
	}
}

.massonary-box-1 .item-img .item-content {
	position: absolute;
	bottom: 130px;
	left: 82px;
}

@media only screen and (max-width: 991px) {
	.massonary-box-1 .item-img .item-content {
		top: 50%;
		right: 50%;
		-webkit-transform: translateY(-50%) translateX(50%);
		transform: translateY(-50%) translateX(50%);
		width: 100%;
		text-align: center;
		bottom: inherit;
	}
}

.massonary-box-1 .item-img .item-content p {
	font-family: var(--font-title);
	font-weight: 600;
	font-size: 22px;
	line-height: 26px;
	letter-spacing: 0.1em;
	color: var(--color-white);
	margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
	.massonary-box-1 .item-img .item-content p {
		font-size: 20px;
		line-height: 24px;
	}
}

@media only screen and (max-width: 479px) {
	.massonary-box-1 .item-img .item-content p {
		font-size: 18px;
		line-height: 22px;
	}
}

.massonary-box-1 .item-img .item-content .title {
	font-weight: 700;
	font-size: 80px;
	line-height: 96px;
	color: var(--color-white);
}

@media only screen and (max-width: 767px) {
	.massonary-box-1 .item-img .item-content .title {
		font-size: 50px;
		line-height: 66px;
	}
}

@media only screen and (max-width: 479px) {
	.massonary-box-1 .item-img .item-content .title {
		font-size: 30px;
		line-height: 46px;
	}
}

.massonary-box-1 .item-img .item-content .button {
	font-family: var(--font-title);
	font-weight: 700;
	font-size: 24px;
	line-height: 29px;
	color: var(--color-white);
}

@media only screen and (max-width: 767px) {
	.massonary-box-1 .item-img .item-content .button {
		font-size: 22px;
		line-height: 27px;
	}
}

@media only screen and (max-width: 479px) {
	.massonary-box-1 .item-img .item-content .button {
		font-size: 20px;
		line-height: 25px;
	}
}

.massonary-box-2 {
	height: 100%;
}

.massonary-box-2:hover .item-img .rt-content-box {
	opacity: 1;
}

.massonary-box-2 .item-img {
	height: 100%;
	position: relative;
}

.massonary-box-2 .item-img a {
	width: 100%;
	height: 100%;
	display: block;
}

.massonary-box-2 .item-img a img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.massonary-box-2 .item-img .rt-content-box {
	position: absolute;
	bottom: 0;
	right: 0;
	top: 0;
	left: 0;
	background-color: rgba(255, 255, 255, 0.77);
	inset: 25px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	opacity: 0;
	-webkit-transition: opacity 0.4s ease-in-out;
	transition: opacity 0.4s ease-in-out;
}

.massonary-box-2 .item-img .rt-content-box .content .title {
	font-weight: 500;
	font-size: 20px;
	line-height: 24px;
	color: var(--color-secondary);
}

.massonary-box-2 .item-img .rt-content-box .content .price {
	font-weight: 700;
	font-size: 18px;
	line-height: 23px;
	color: var(--color-secondary);
	margin-bottom: 20px;
}

.massonary-box-2 .item-img .rt-content-box .content .woo-social ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 25px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.massonary-box-2 .item-img .rt-content-box .content .woo-social ul li a {
	font-size: 15px;
	line-height: 17px;
	color: var(--color-secondary);
}

.massonary-box-3 .item-img {
	position: relative;
}

.massonary-box-3 .item-img a {
	width: 100%;
}

.massonary-box-3 .item-img a img {
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	width: 100%;
}

.massonary-box-3 .item-img .item-content {
	position: absolute;
	bottom: 90px;
	right: 82px;
}

@media only screen and (max-width: 991px) {
	.massonary-box-3 .item-img .item-content {
		top: 50%;
		right: 50%;
		-webkit-transform: translateY(-50%) translateX(50%);
		transform: translateY(-50%) translateX(50%);
		width: 100%;
		text-align: center;
		bottom: inherit;
	}
}

.massonary-box-3 .item-img .item-content p {
	color: var(--color-secondary);
}

.massonary-box-3 .item-img .item-content .title {
	color: var(--color-secondary);
}

.massonary-box-3 .item-img .item-content .button {
	color: var(--color-secondary);
}

.massonary-wrap-2 {
	padding: 120px 0px;
}

.massonary-wrap-2 .item-button {
	text-align: center;
	margin-top: 60px;
}

.massonary-wrap-2 .item-button .btn {
	background-color: transparent;
	border: 1px solid #cdcdcd;
	color: var(--color-secondary);
}

.massonary-wrap-2 .item-button .btn svg {
	margin-right: 5px;
}

.massonary-wrap-2 .item-button .btn:hover {
	color: var(--color-white);
}

.massonary-wrap-2 .hd-content {
	text-align: center;
	margin-bottom: 60px;
}

.massonary-wrap-2 .hd-content .item-icon {
	width: 80px;
	height: 80px;
	border: 1px solid var(--color-primary);
	border-radius: 31px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 20px;
}

.massonary-wrap-2 .hd-content .item-icon i {
	font-size: 40px;
	color: var(--color-primary);
}

.massonary-wrap-2 .hd-content .title {
	font-weight: 700;
	font-size: 40px;
	line-height: 48px;
	margin-bottom: 15px;
	letter-spacing: 0.3em;
}

@media only screen and (max-width: 767px) {
	.massonary-wrap-2 .hd-content .title {
		font-size: 30px;
		line-height: 36px;
		letter-spacing: 0.1em;
	}
}

@media only screen and (max-width: 479px) {
	.massonary-wrap-2 .hd-content .title {
		font-size: 24px;
		line-height: 30px;
	}
}

.massonary-wrap-2 .hd-content p {
	font-size: 24px;
	line-height: 34px;
	color: #000000;
}

@media only screen and (min-width: 1200px) {
	.massonary-wrap-2 .hd-content p {
		padding-right: 280px;
		padding-left: 280px;
	}
}

@media only screen and (max-width: 767px) {
	.massonary-wrap-2 .hd-content p {
		font-size: 20px;
		line-height: 30px;
	}
}

@media only screen and (max-width: 479px) {
	.massonary-wrap-2 .hd-content p {
		font-size: 18px;
		line-height: 28px;
	}
}

.massonary-box-4:hover .item-img .click-wrapper {
	bottom: 30px;
	opacity: 1;
}

.massonary-box-4 .item-img {
	position: relative;
}

@media only screen and (max-width: 991px) {
	.massonary-box-4 .item-img a {
		width: 100%;
	}
}

@media only screen and (max-width: 991px) {
	.massonary-box-4 .item-img a img {
		width: 100%;
	}
}

.massonary-box-4 .item-img .click-wrapper {
	position: absolute;
	bottom: 0px;
	right: 50%;
	-webkit-transform: translateX(50%);
	transform: translateX(50%);
	opacity: 0;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.massonary-box-4 .item-img .click-wrapper .btn {
	height: 49px;
	width: 49px;
	background-color: var(--color-white);
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-weight: 400;
	font-size: 15px;
	line-height: 20px;
	color: #000000;
	border-radius: 50%;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.massonary-box-4 .item-img .click-wrapper .btn:focus {
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.massonary-box-4 .item-img .click-wrapper .btn:hover {
	background-color: #E60023;
	color: var(--color-white);
}

@media only screen and (max-width: 1199px) {
	.massonary-box-4.style-2 {
		margin-top: 24px;
	}
}

@media only screen and (max-width: 991px) {
	.massonary-box-4.style-3 {
		margin-top: 24px;
	}
}

@media only screen and (max-width: 767px) {
	.massonary-box-4.style-4 {
		margin-top: 24px;
	}
}

.promo-image-wrapper{
	overflow: hidden;
    position: relative;
}
.promo-image-wrapper .promo-img{
	width: 100%;
	overflow: hidden;
}
.promo-image-wrapper .promo-img img{
	-webkit-transition: all 1s;
    transition: all 1s;
	-webkit-transform: scale(1);
    transform: scale(1);
}

.promo-image-wrapper:hover .promo-img img{
	-webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.promo-image-wrapper .promo-content {
    position: absolute;
	width: 100%;
}

.promo-content .title{
	font-size: 30px;
	line-height: 40px;
	font-weight: 600;
	color: var(--color-white);
	padding-bottom: 10px;
}

.promo-content .item-button .btn{
	height: 40px;
	background: transparent;
	border: 1px solid var(--color-white);
}

.promo-content .item-button .btn:after{
	background-color: var(--color-primary);
	color: var(--color-white);
}

.promo-content .item-button .btn:hover{
	border-color: var(--color-primary);
}

.grid:after {
	content: "";
	display: block;
	clear: both;
}

/*------------------- grid-item -------------------*/
.grid {
	margin-right: -20px;
	margin-left: -20px;
}

.grid-item {
	width: 25%;
	height: 341px;
	background: transparent;
	border: 0;
	border-color: transparent;
	border-radius: 5px;
	padding-right: 20px;
	padding-left: 20px;
	margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
	.grid-item {
		width: 100%;
		height: auto;
	}
}

.grid-item--width2 {
	width: 50%;
}

@media only screen and (max-width: 767px) {
	.grid-item--width2 {
		width: 100%;
	}
}

.grid-item--height2 {
	height: 720px;
}

@media only screen and (max-width: 767px) {
	.grid-item--height2 {
		height: auto;
	}
}

.grid-sizer {
	width: 25%;
}

/*------------------- portfolio -------------------*/
.portfolio-wrap-1 {
	position: relative;
	overflow: hidden;
}

.portfolio-wrap-1 .isotope-wrap .isotope-classes-tab {
	margin-bottom: 60px;
	text-align: center;
}

@media only screen and (max-width: 767px) {
	.portfolio-wrap-1 .isotope-wrap .isotope-classes-tab {
		margin-bottom: 30px;
	}
}

.portfolio-wrap-1 .isotope-wrap .isotope-classes-tab .nav-item {
	color: var(--color-secondary);
	display: inline-block;
	font-size: 18px;
	font-weight: 500;
	font-family: var(--font-title);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	border-radius: 0;
	padding: 3px 10px;
	border: 0;
	cursor: pointer;
	text-decoration: none;
	border: 1px solid #fff;
	margin-left: 20px;
}

.portfolio-wrap-1 .isotope-wrap .isotope-classes-tab .nav-item:last-child {
	margin-left: 0;
}

.portfolio-wrap-1 .isotope-wrap .isotope-classes-tab .current {
	color: var(--color-primary);
	border: 1px solid var(--color-primary);
}

.portfolio-box-1:hover .item-img a:before {
	visibility: visible;
	opacity: 1;
	height: 100%;
	width: 100%;
	border-radius: 0;
	-webkit-transition: all 0.6s ease;
	transition: all 0.6s ease;
}

.portfolio-box-1:hover .item-img a .icon {
	-webkit-transform: translate(50%, -50%);
	transform: translate(50%, -50%);
	top: 50%;
}

@media (min-width: 1200px) {
	.portfolio-box-1:hover .item-img a .icon i {
		visibility: visible;
		opacity: 1;
	}
}

.portfolio-box-1:hover .item-img a img {
	-webkit-transition: 2s;
	transition: 2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.portfolio-box-1:hover .item-img .item-content {
	visibility: visible;
	opacity: 1;
	bottom: 35px;
}

.portfolio-box-1 .item-img {
	position: relative;
	overflow: hidden;
}

.portfolio-box-1 .item-img a {
	width: 100%;
	display: block;
	position: relative;
}

.portfolio-box-1 .item-img a:before {
	content: "";
	height: 100%;
	width: 100%;
	background-color: rgba(22, 22, 25, 0.55);
	position: absolute;
	right: 0;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.6s ease;
	transition: all 0.6s ease;
	z-index: 1;
	top: 50%;
	height: 0%;
	width: 0%;
	border-radius: 100%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	margin: 0 auto;
}

.portfolio-box-1 .item-img a img {
	-webkit-transition: 1.5s;
	transition: 1.5s;
	width: 100%;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.portfolio-box-1 .item-img a .icon {
	position: absolute;
	-webkit-transform: translate(50%, -70%);
	transform: translate(50%, -70%);
	top: 70%;
	right: 50%;
	-webkit-transition: all 0.4s ease-out;
	transition: all 0.4s ease-out;
	z-index: 3;
}

.portfolio-box-1 .item-img a .icon i {
	height: 65px;
	width: 65px;
	background-color: var(--color-primary);
	color: var(--color-white);
	font-size: 20px;
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transition: all 0.4s ease-out;
	transition: all 0.4s ease-out;
	visibility: hidden;
	opacity: 0;
}

.portfolio-box-1 .item-img a .icon i:hover {
	background-color: #fff;
	color: var(--color-primary);
}

.portfolio-box-1 .item-img .item-content {
	position: absolute;
	bottom: 0px;
	right: 35px;
	visibility: hidden;
	opacity: 0;
	-webkit-transition-duration: 0.7s;
	transition-duration: 0.7s;
	z-index: 2;
}

@media (max-width: 991px) {
	.portfolio-box-1 .item-img .item-content {
		visibility: visible;
		opacity: 1;
		bottom: 35px;
	}
}

.portfolio-box-1 .item-img .item-content .title a {
	font-weight: 500;
	font-size: 26px;
	line-height: 31px;
	color: var(--color-white);
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.portfolio-box-1 .item-img .item-content .title a:before {
	content: none;
}

.portfolio-box-1 .item-img .item-content .item-tags {
	font-family: var(--color-white);
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
	color: #d6d6d6;
	-webkit-transition-delay: 0.4s;
	transition-delay: 0.4s;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 991px) {
	.portfolio-box-1.style-1 {
		margin-top: 24px;
	}
}

@media only screen and (max-width: 767px) {
	.portfolio-box-1.style-2 {
		margin-top: 24px;
	}
}

.single-portfolio-box-1 .content .subtitle {
	font-family: var(--font-title);
	font-weight: 600;
	font-size: 18px;
	line-height: 24px;
	color: #898989;
	display: block;
	letter-spacing: 0.1em;
	margin-bottom: 6px;
}

@media only screen and (max-width: 479px) {
	.single-portfolio-box-1 .content .subtitle {
		font-size: 16px;
		line-height: 22px;
	}
}

.single-portfolio-box-1 .content .title {
	font-size: 30px;
	line-height: 36px;
	margin-bottom: 15px;
}

@media only screen and (max-width: 479px) {
	.single-portfolio-box-1 .content .title {
		font-size: 24px;
		line-height: 30px;
	}
}

.single-portfolio-box-1 .content .description {
	font-weight: 500;
	font-size: 16px;
	line-height: 30px;
	color: var(--color-secondary);
	margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
	.single-portfolio-box-1 .portfolio-img-wrap .portfolio-img.style-1 {
		margin-bottom: 24px;
	}
}

.single-portfolio-box-1 .description-area-2 {
	padding: 0 90px 50px;
}

@media only screen and (max-width: 991px) {
	.single-portfolio-box-1 .description-area-2 {
		padding: 50px 0px;
	}
}

.single-portfolio-box-1 .description-area-2 .share-wrapper {
	padding: 50px 0px 30px;
}

@media only screen and (max-width: 767px) {
	.single-portfolio-box-1 .description-area-2 .share-wrapper {
		padding: 30px 0px 0px 0px;
	}
}

.single-portfolio-box-1 .description-area-2 .share-wrapper .social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.single-portfolio-box-1 .description-area-2 .share-wrapper .social li a {
	height: 35px;
	width: 35px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border: 1px solid #1877F2;
	border-radius: 50%;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.single-portfolio-box-1 .description-area-2 .share-wrapper .social li a:hover {
	background-color: #1877f2;
}

.single-portfolio-box-1 .description-area-2 .share-wrapper .social li a:hover i {
	color: #fff;
	-webkit-animation: toBottomFromTop 0.5s forwards;
	animation: toBottomFromTop 0.5s forwards;
}

.single-portfolio-box-1 .description-area-2 .share-wrapper .social li a i {
	color: #1877F2;
	font-size: 10px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.single-portfolio-box-1 .description-area-2 .share-wrapper .social .twit-bg a {
	border: 1px solid #1DA1F2;
	color: #1DA1F2;
}

.single-portfolio-box-1 .description-area-2 .share-wrapper .social .twit-bg a:hover {
	background-color: #1DA1F2;
	border-color: #1DA1F2;
}

.single-portfolio-box-1 .description-area-2 .share-wrapper .social .twit-bg a i {
	color: #1DA1F2;
}

.single-portfolio-box-1 .description-area-2 .share-wrapper .social .link-bg a {
	border: 1px solid #0077B5;
	color: #0077B5;
}

.single-portfolio-box-1 .description-area-2 .share-wrapper .social .link-bg a:hover {
	background-color: #0077B5;
	border-color: #0077B5;
}

.single-portfolio-box-1 .description-area-2 .share-wrapper .social .link-bg a i {
	color: #0077B5;
}

.single-portfolio-box-1 .description-area-2 .share-wrapper .social .instra-bg a {
	border: 1px solid #C13584;
	color: #C13584;
}

.single-portfolio-box-1 .description-area-2 .share-wrapper .social .instra-bg a:hover {
	background-color: #C13584;
	border-color: #C13584;
}

.single-portfolio-box-1 .description-area-2 .share-wrapper .social .instra-bg a i {
	color: #C13584;
}

.single-portfolio-box-1 .description-area-2 .share-wrapper .social .pinterest-bg a {
	border: 1px solid #E60023;
	color: #E60023;
}

.single-portfolio-box-1 .description-area-2 .share-wrapper .social .pinterest-bg a:hover {
	background-color: #E60023;
	border-color: #E60023;
}

.single-portfolio-box-1 .description-area-2 .share-wrapper .social .pinterest-bg a i {
	color: #E60023;
}

.single-portfolio-box-1 .description-area-2 .share-wrapper .social .text {
	color: var(--color-secondary);
	font-weight: 600;
	font-size: 20px;
	line-height: 30px;
}

@media only screen and (max-width: 479px) {
	.single-portfolio-box-1 .description-area-2 .share-wrapper .social .text {
		font-size: 16px;
		line-height: 26px;
	}
}

.single-portfolio-box-1 .post-pagination-area {
	border-top: 1px solid #d9d9d9;
	padding: 60px 90px 20px 90px;
	position: relative;
}

@media only screen and (max-width: 991px) {
	.single-portfolio-box-1 .post-pagination-area {
		padding: 60px 0px 20px;
	}
}

.single-portfolio-box-1 .post-pagination-area::after {
	content: "";
	height: 60px;
	width: 2px;
	background-color: #d9d9d9;
	position: absolute;
	top: 50%;
	right: 50%;
	-webkit-transform: translateY(-50%) translateX(50%);
	transform: translateY(-50%) translateX(50%);
}

@media only screen and (max-width: 767px) {
	.single-portfolio-box-1 .post-pagination-area::after {
		display: none;
	}
}

@media only screen and (max-width: 767px) {
	.single-portfolio-box-1 .post-pagination-area .prev-area {
		margin-bottom: 30px;
	}
}

.single-portfolio-box-1 .post-pagination-area .prev-area .item-title {
	font-weight: 500;
	font-size: 15px;
	line-height: 18px;
	color: var(--color-secondary);
	margin-bottom: 15px;
}

@media only screen and (max-width: 767px) {
	.single-portfolio-box-1 .post-pagination-area .prev-area .item-title {
		text-align: center;
	}
}

.single-portfolio-box-1 .post-pagination-area .prev-area .prev-layout {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 13px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media only screen and (max-width: 767px) {
	.single-portfolio-box-1 .post-pagination-area .prev-area .prev-layout {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

.single-portfolio-box-1 .post-pagination-area .prev-area .prev-layout:hover .pagination-img a img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.single-portfolio-box-1 .post-pagination-area .prev-area .prev-layout .pagination-img {
	overflow: hidden;
	border-radius: 50%;
	flex: 0 0 80px;
}

.single-portfolio-box-1 .post-pagination-area .prev-area .prev-layout .pagination-img img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.single-portfolio-box-1 .post-pagination-area .prev-area .prev-layout .item-content .title a {
	font-weight: 700;
	font-size: 16px;
	line-height: 21px;
	color: var(--color-secondary);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.single-portfolio-box-1 .post-pagination-area .prev-area .prev-layout .item-content .title a:hover {
	color: var(--color-primary);
}

.single-portfolio-box-1 .post-pagination-area .prev-area .prev-layout .item-content .subtitle {
	font-size: 15px;
	line-height: 20px;
	color: #8E8E8E;
}

.single-portfolio-box-1 .post-pagination-area .next-area {
	text-align: left;
}

@media only screen and (max-width: 767px) {
	.single-portfolio-box-1 .post-pagination-area .next-area {
		text-align: center;
	}
}

.single-portfolio-box-1 .post-pagination-area .next-area .item-title {
	font-weight: 500;
	font-size: 15px;
	line-height: 18px;
	color: var(--color-secondary);
	margin-bottom: 15px;
}

.single-portfolio-box-1 .post-pagination-area .next-area .next-layout {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 13px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: right;
	-ms-flex-pack: right;
	justify-content: left;
}

@media only screen and (max-width: 767px) {
	.single-portfolio-box-1 .post-pagination-area .next-area .next-layout {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

.single-portfolio-box-1 .post-pagination-area .next-area .next-layout:hover .pagination-img a img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.single-portfolio-box-1 .post-pagination-area .next-area .next-layout .pagination-img {
	overflow: hidden;
	border-radius: 50%;
	flex: 0 0 80px;
}

.single-portfolio-box-1 .post-pagination-area .next-area .next-layout .pagination-img img {
	border-radius: 50%;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	width: 100%;
	height: 100%;
}

.single-portfolio-box-1 .post-pagination-area .next-area .next-layout .item-content .title a {
	font-weight: 700;
	font-size: 16px;
	line-height: 21px;
	color: var(--color-secondary);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.single-portfolio-box-1 .post-pagination-area .next-area .next-layout .item-content .title a:hover {
	color: var(--color-primary);
}

.single-portfolio-box-1 .post-pagination-area .next-area .next-layout .item-content .subtitle {
	font-size: 15px;
	line-height: 20px;
	color: #8E8E8E;
}

.team-wrap-1 .title {
	font-weight: 700;
	font-size: 40px;
	line-height: 48px;
	margin-bottom: 60px;
}

@media only screen and (max-width: 767px) {
	.team-wrap-1 .title {
		font-size: 30px;
		line-height: 36px;
	}
}

@media only screen and (max-width: 479px) {
	.team-wrap-1 .title {
		font-size: 24px;
		line-height: 30px;
	}
}

.team-wrapper-slider {
	position: relative;
}

@media only screen and (max-width: 1199px) {
	.team-wrapper-slider .navigation-area {
		visibility: hidden;
	}
}

.team-wrapper-slider .navigation-area .swiper-button-next, .team-wrapper-slider .navigation-area .swiper-button-prev {
	height: 50px;
	width: 50px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border: 0;
	border-radius: 50%;
	position: absolute;
	background-color: #f3f3f3;
	top: -80px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.team-wrapper-slider .navigation-area .swiper-button-next:hover, .team-wrapper-slider .navigation-area .swiper-button-prev:hover {
	background-color: var(--color-primary);
}

.team-wrapper-slider .navigation-area .swiper-button-next:hover i, .team-wrapper-slider .navigation-area .swiper-button-prev:hover i {
	color: var(--color-white);
}

.team-wrapper-slider .navigation-area .swiper-button-next i, .team-wrapper-slider .navigation-area .swiper-button-prev i {
	color: var(--color-secondary);
	font-size: 16px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.team-wrapper-slider .navigation-area .swiper-button-next::after, .team-wrapper-slider .navigation-area .swiper-button-prev::after {
	display: none;
}

.team-wrapper-slider .navigation-area .swiper-button-next {
	right: auto;
	left: 0;
}

.team-wrapper-slider .navigation-area .swiper-button-prev {
	right: auto;
	left: 60px;
}

.team-box-1:hover .item-img img {
	-webkit-transform: scale(1);
	transform: scale(1);
}

.team-box-1 .item-img {
	overflow: hidden;
}

.team-box-1 .item-img {
	width: 100%;
}

.team-box-1 .item-img img {
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
	width: 100%;
}

.team-box-1 .item-content {
	text-align: center;
	padding: 20px 0px 0px 0px;
}

.team-box-1 .item-content .rt-title {
	font-weight: 700;
	font-size: 24px;
	line-height: 30px;
	margin-bottom: 5px;
}

.team-box-1 .item-content .subtitle {
	font-size: 18px;
	line-height: 24px;
	color: #8E8E8E;
	margin-bottom: 10px;
}

.team-box-1 .item-content .item-social ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 15px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.team-box-1 .item-content .item-social ul li a {
	font-size: 15px;
	line-height: 14px;
	color: #AEAEAE;
	display: inline-block;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.team-box-1 .item-content .item-social ul li a:hover {
	color: var(--color-primary);
}

.team-box-1 .item-content .item-social ul li a:hover i {
	-webkit-animation: toBottomFromTop 0.5s forwards;
	animation: toBottomFromTop 0.5s forwards;
}

.team-box-1 .item-content .item-social ul li a i {
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 991px) {
	.team-box-1.style-1 {
		margin-top: 24px;
	}
}

@media only screen and (max-width: 767px) {
	.team-box-1.style-2 {
		margin-top: 24px;
	}
}

.team-form-wrap {
	padding-top: 0;
}

.team-form-inner {
	padding: 55px;
	border: 1px solid #c1c1c1;
}

@media only screen and (max-width: 479px) {
	.team-form-inner {
		padding: 30px;
	}
}

.team-form-inner .team-form-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.team-form-inner .team-form-box .content .title {
	font-weight: 700;
	font-size: 30px;
	line-height: 36px;
	color: #000000;
}

@media only screen and (max-width: 479px) {
	.team-form-inner .team-form-box .content .title {
		font-size: 24px;
		line-height: 30px;
	}
}

.team-form-inner .team-form-box .content p {
	margin-bottom: 0;
}

@media screen and (min-width: 1200px) {
	.team-form-inner .team-form-box .content p {
		width: 600px;
	}
}

.team-form-inner .team-button {
	text-align: left;
}

@media only screen and (max-width: 767px) {
	.team-form-inner .team-button {
		text-align: right;
		margin-top: 30px;
	}
}

.team-form-inner .team-button .team-btn {
	border: 1px solid #000;
	font-weight: 700;
	font-size: 15px;
	line-height: 18px;
	text-align: center;
	color: var(--color-secondary);
	font-family: var(--font-title);
	padding: 12px 25px;
	display: inline-block;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	letter-spacing: 0.1em;
}

.team-form-inner .team-button .team-btn:hover {
	background-color: var(--color-primary);
	color: var(--color-white);
	border-color: var(--color-primary);
}

/*------------------- Team Single -------------------*/
.team-single-content-left .team-thumb {
	padding-bottom: 15px;
}

.team-single-content-left .team-social {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.team-single-content-left .team-social li a {
	font-size: 15px;
	line-height: 15px;
	color: #AEAEAE;
	display: inline-block;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.team-single-content-left .team-social li a:hover {
	color: var(--color-primary);
}

.team-single-content-left .team-social li a i {
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.team-single-content-left .team-social li a:hover i {
	-webkit-animation: toBottomFromTop 0.5s forwards;
	animation: toBottomFromTop 0.5s forwards;
}

.team-single-content .entry-title {
	font-size: 30px;
	line-height: 36px;
	margin-bottom: 10px;
}

.team-single-content .designation {
	font-family: var(--font-title);
	font-weight: 600;
	font-size: 18px;
	line-height: 24px;
	color: #898989;
	display: block;
	letter-spacing: 0.1em;
	margin-bottom: 20px;
}

.contact-wrap-1 {
	padding-top: 70px;
}

.map-box-1 .map {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	width: 100%;
}

@media only screen and (min-width: 1200px) {
	.contact-wrap-2 {
		margin-top: -170px;
	}
}

.contact-wrap-inner {
	padding: 110px 70px 120px;
	background-color: #fff;
}

@media only screen and (min-width: 1200px) {
	.contact-wrap-inner {
		margin-right: 80px;
		margin-left: 55px;
	}
}

@media only screen and (max-width: 479px) {
	.contact-wrap-inner {
		padding: 40px;
	}
}

.contact-wrap-inner .con-title {
	font-weight: 600;
	line-height: 46px;
	margin-bottom: 0;
}

@media only screen and (max-width: 991px) {
	.contact-wrap-inner .con-title {
		margin-bottom: 30px;
	}
}

@media only screen and (max-width: 479px) {
	.contact-wrap-inner .con-title {
		font-size: 24px;
		line-height: 30px;
	}
}

.contact-wrap-inner .contact-box-1 {
	margin-bottom: 30px;
}

.contact-wrap-inner .contact-box-1:last-child {
	margin-bottom: 0;
}

.contact-wrap-inner .contact-box-1 .title {
	font-weight: 600;
	font-size: 30px;
	line-height: 46px;
	margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
	.contact-wrap-inner .contact-box-1 .title {
		font-size: 24px;
		line-height: 30px;
	}
}

@media only screen and (max-width: 479px) {
	.contact-wrap-inner .contact-box-1 .title {
		font-size: 20px;
		line-height: 30px;
	}
}

.contact-wrap-inner .contact-box-1 .subtitle {
	font-family: var(--font-title);
	font-weight: 500;
	font-size: 20px;
	line-height: 24px;
	color: #838181;
	display: block;
	margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
	.contact-wrap-inner .contact-box-1 .subtitle {
		font-size: 18px;
		line-height: 22px;
	}
}

@media only screen and (max-width: 479px) {
	.contact-wrap-inner .contact-box-1 .subtitle {
		font-size: 16px;
		line-height: 20px;
	}
}

.contact-wrap-inner .contact-box-1 .address ul li {
	font-size: 16px;
	line-height: 30px;
	color: #686868;
}

.contact-wrap-inner .contact-box-1 .address ul li a {
	font-size: 16px;
	line-height: 30px;
	color: #686868;
}

@media only screen and (max-width: 991px) {
	.contact-wrap-inner .contact-box-1.style-1 {
		margin-bottom: 45px;
	}
}

.contact-social a {
	font-size: 20px;
	line-height: 46px;
	color: #969696;
	display: inline-block;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
}

.contact-social a:hover i {
	color: var(--color-primary) !important;
}

.contact-social a:hover i {
	-webkit-animation: toBottomFromTop 0.5s forwards;
	animation: toBottomFromTop 0.5s forwards;
}

.contact-social a i {
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.form-area {
	border-top: 1px solid #e0e0e0;
	padding-top: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 45px;
}

@media only screen and (max-width: 767px) {
	.form-area {
		display: block;
	}
}

.form-area .title .item-title {
	font-weight: 600;
	font-size: 36px;
}

@media only screen and (max-width: 767px) {
	.form-area .title .item-title {
		font-size: 30px;
		margin-bottom: 20px;
	}
}

@media only screen and (max-width: 479px) {
	.form-area .title .item-title {
		font-size: 24px;
	}
}

.error-wrap-1 {
	position: relative;
	padding: 4px 0px 100px;
}

@media only screen and (max-width: 767px) {
	.error-wrap-1 {
		padding-bottom: 75px;
	}
}

@media only screen and (max-width: 479px) {
	.error-wrap-1 {
		padding-bottom: 55px;
	}
}

@media only screen and (min-width: 1200px) {
	.error-box-1 {
		width: 695px;
		margin-left: auto;
		margin-right: auto;
	}
}

.error-box-1 .item-logo {
	margin-bottom: 0px;
}

@media only screen and (max-width: 1199px) {
	.error-box-1 .item-logo {
		text-align: center;
	}
}

.error-box-1 .subtitle {
	font-weight: 500;
	font-size: 20px;
	line-height: 35px;
	display: block;
	margin-bottom: 35px;
	text-align: center;
}

@media only screen and (min-width: 1200px) {
	.error-box-1 .subtitle {
		padding: 0px 70px;
	}
}

.error-box-1 .item-button {
	text-align: center;
}

.error-box-1 .item-button .btn {
	background-color: var(--color-primary);
	color: var(--color-white);
	font-family: var(--font-title);
	font-weight: 700;
	font-size: 15px;
	line-height: 18px;
	letter-spacing: 0.1em;
	border: 1px solid var(--color-primary);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	padding: 20px 50px;
	height: 50px;
}

.error-box-1 .item-button .btn::after {
	display: none;
}

.error-box-1 .item-button .btn:hover {
	border-color: var(--color-secondary);
	background-color: var(--color-secondary);
	color: var(--color-white);
}

.coming-soon-box-1 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media only screen and (max-width: 991px) {
	.coming-soon-box-1 {
		display: block;
	}
}

.coming-soon-box-1 .item-content {
	text-align: center;
}

@media only screen and (min-width: 1440px) {
	.coming-soon-box-1 .item-content {
		width: 456px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media screen and (max-width: 1199px) {
	.coming-soon-box-1 .item-content {
		padding: 0px 30px;
		text-align: right;
	}
}

@media only screen and (max-width: 991px) {
	.coming-soon-box-1 .item-content {
		padding: 30px;
	}
}

.coming-soon-box-1 .item-content .item-logo {
	margin-bottom: 40px;
}

@media only screen and (max-width: 991px) {
	.coming-soon-box-1 .item-content .item-logo {
		margin-bottom: 20px;
	}
}

.coming-soon-box-1 .item-content .title {
	font-weight: 500;
	font-size: 30px;
	line-height: 36px;
	letter-spacing: 0.2em;
}

.coming-soon-box-1 .item-content p {
	font-size: 16px;
	line-height: 30px;
	margin-bottom: 40px;
}

@media only screen and (max-width: 991px) {
	.coming-soon-box-1 .item-content p {
		margin-bottom: 20px;
	}
}

.coming-soon-box-1 .item-content .countdown-layout-1 {
	margin-bottom: 55px;
}

@media only screen and (max-width: 1199px) {
	.coming-soon-box-1 .item-content .countdown-layout-1 {
		text-align: right;
	}
}

@media only screen and (max-width: 991px) {
	.coming-soon-box-1 .item-content .countdown-layout-1 {
		margin-bottom: 35px;
	}
}

.coming-soon-box-1 .item-content .countdown-layout-1 .countdown-section {
	position: relative;
}

@media only screen and (max-width: 1199px) {
	.coming-soon-box-1 .item-content .countdown-layout-1 .countdown-section {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		width: 80px;
	}
}

@media only screen and (max-width: 375px) {
	.coming-soon-box-1 .item-content .countdown-layout-1 .countdown-section {
		margin-bottom: 40px;
	}
}

.coming-soon-box-1 .item-content .countdown-layout-1 .countdown-section .countdown-number {
	color: var(--color-primary);
}

@media only screen and (max-width: 1199px) {
	.coming-soon-box-1 .item-content .countdown-layout-1 .countdown-section .countdown-number {
		font-size: 40px;
	}
}

.coming-soon-box-1 .item-content .countdown-layout-1 .countdown-section .countdown-unit {
	color: var(--color-secondary);
}

@media only screen and (max-width: 991px) {
	.coming-soon-box-1 .item-content .countdown-layout-1 .countdown-section .countdown-unit {
		text-align: right;
	}
}

.coming-soon-box-1 .item-content .input-group {
	margin-bottom: 50px;
}

@media only screen and (max-width: 991px) {
	.coming-soon-box-1 .item-content .input-group {
		margin-bottom: 20px;
	}
}

.coming-soon-box-1 .item-content .input-group .form-control {
	height: 50px;
	color: var(--color-secondary);
	border: 1px solid #E8E8E8;
	background-color: transparent;
	border-radius: 0;
	margin-left: 10px;
}

.coming-soon-box-1 .item-content .input-group .form-control:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
	outline: 0;
	border-color: var(--color-secondary);
}

.coming-soon-box-1 .item-content .input-group .form-control::-webkit-input-placeholder {
	color: #a5a5a5;
}

.coming-soon-box-1 .item-content .input-group .form-control::-moz-placeholder {
	color: #a5a5a5;
}

.coming-soon-box-1 .item-content .input-group .form-control:-ms-input-placeholder {
	color: #a5a5a5;
}

.coming-soon-box-1 .item-content .input-group .form-control::-ms-input-placeholder {
	color: #a5a5a5;
}

.coming-soon-box-1 .item-content .input-group .form-control::placeholder {
	color: #a5a5a5;
}

.coming-soon-box-1 .item-content .input-group .btn-outline-secondary {
	height: 50px;
	width: 130px;
	color: var(--color-white);
	font-weight: 700;
	font-size: 15px;
	line-height: 24px;
	text-align: center;
	display: inline-block;
	background-color: var(--color-secondary);
	border-radius: 0;
	border: 0;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	letter-spacing: 0.1em;
}

.coming-soon-box-1 .item-content .input-group .btn-outline-secondary:hover {
	color: var(--color-white);
	background-color: var(--color-primary);
}

.coming-soon-box-1 .item-content .input-group .btn-outline-secondary:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
	outline: 0;
}

.coming-soon-box-1 .item-content .item-social .social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

@media screen and (max-width: 1199px) {
	.coming-soon-box-1 .item-content .item-social .social {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
}

.coming-soon-box-1 .item-content .item-social .social li a {
	width: 40px;
	height: 40px;
	background: transparent;
	color: #7d7d7d;
	border: 1px solid #7d7d7d;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 50%;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.coming-soon-box-1 .item-content .item-social .social li a:hover {
	border-color: var(--color-primary);
	background-color: var(--color-primary);
}

.coming-soon-box-1 .item-content .item-social .social li a:hover i {
	color: var(--color-white);
	-webkit-animation: toBottomFromTop 0.5s forwards;
	animation: toBottomFromTop 0.5s forwards;
}

.coming-soon-box-1 .item-content .item-social .social li a i {
	font-size: 15px;
	color: #7d7d7d;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.coming-soon-box-1 .item-content .item-social .social .fb-bg a:hover {
	background-color: #2e78d3;
	border-color: #2e78d3;
}

.coming-soon-box-1 .item-content .item-social .social .twit-bg a:hover {
	background-color: #37b7f9;
	border-color: #37b7f9;
}

.coming-soon-box-1 .item-content .item-social .social .link-bg a:hover {
	background-color: #2e78d3;
	border-color: #2e78d3;
}

.coming-soon-box-1 .item-content .item-social .social .instra-bg a:hover {
	background-color: #c32aa3;
	border-color: #c32aa3;
}

.coming-soon-box-1 .item-content .item-social .social .pinterest-bg a:hover {
	background-color: #ff1244;
	border-color: #ff1244;
}

/*------------------- Mobile Menu -------------------*/
@media (min-width: 1200px) {
	.rt-header-menu {
		display: none;
	}
}

.rt-mobile-menn-bar {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	border-top: 1px solid rgba(81, 81, 81, 0.15);
	border-bottom: 1px solid rgba(81, 81, 81, 0.15);
	z-index: 999;
	background: #fff;
	transition: all 0.33s;
}

.rt-mobile-menn-bar .mean-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	padding: 12px 12px;
	top: 0;
	right: 0;
	width: 100%;
	z-index: 999;
	transition: all 0.3s linear;
}

.rt-mobile-menn-bar .mean-bar .header-icon-area {
	margin-right: auto;
	margin-left: 23px;
}

.rt-mobile-menn-bar .mean-bar .header-icon-area ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 15px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.rt-mobile-menn-bar .mean-bar .header-icon-area ul .single-item a {
	color: var(--color-secondary);
	font-size: 20px;
	position: relative;
}

.rt-mobile-menn-bar .mean-bar .single-item.cart-icon .item-count {
	background-color: var(--color-primary);
	color: #fff;
	position: absolute;
	border-radius: 50%;
	top: -8px;
	right: 12px;
	-webkit-box-shadow: 0 5px 5px rgb(17 17 17 / 30%);
	box-shadow: 0 5px 5px rgb(17 17 17 / 30%);
	font-size: 12px;
	line-height: 18px;
	height: 18px;
	width: 18px;
	text-align: center;
}

@media (max-width: 480px) {
	.rt-mobile-menn-bar .mean-bar .single-item.cart-icon span.cart-amount {
		display: none;
	}
}

.rt-header-menu.mobile-sticky .rt-mobile-menn-bar {
	position: fixed;
	z-index: 99;
	top: 0;
	right: 0;
	left: 0;
	margin: 0 auto;
}

@media (min-width: 783px) and (max-width: 1199px) {
	.admin-bar .rt-header-menu.mobile-sticky .rt-mobile-menn-bar {
		margin-top: 32px;
	}
}

@media (max-width: 782px) {
	.admin-bar .rt-header-menu.mobile-sticky .rt-mobile-menn-bar {
		margin-top: 46px;
	}
}

@media screen and (max-width: 600px) {
	.admin-bar .nojq {
		position: fixed !important;
	}
}

.navbar-wrap .logo img {
	max-width: 227px;
	width: 100%;
}

@media (max-width: 1199px) {
	.rt-mobile-menn-bar .logo img {
		max-width: 180px;
	}
}

@media (max-width: 991px) {
	.rt-mobile-menn-bar .logo img {
		max-width: 150px;
	}
}

@media (max-width: 767px) {
	.rt-mobile-menn-bar .logo img {
		max-width: 140px;
	}
}

@media ( max-width: 320px ) {
	.rt-mobile-menn-bar .logo img {
		max-width: 110px;
	}
}

.rt-mobile-menn-bar .item {
	margin-left: 15px;
}

@media (max-width: 320px ) {
	.rt-mobile-menn-bar .item {
		margin-left: 12px;
	}
}

@media (max-width: 320px) {
	.rt-mobile-menn-bar .item .user-btn-2,
	.rt-mobile-menn-bar .item .wishlist-btn-2,
	.rt-mobile-menn-bar .item .shopping-cart-btn-2 {
		width: 32px;
		height: 32px;
		line-height: 32px;
	}

	.rt-mobile-menn-bar .item {
		margin-left: 12px;
	}
}

.rt-mobile-menn-bar .item a {
	color: #000;
}

.rt-mobile-menn-bar .item .shopping-cart-btn-1 {
	margin-left: 10px;
}

body .sidebarBtn {
	display: block;
	padding: 12px 0;
	cursor: pointer;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

body .sidebarBtn .bar {
	background: #000000;
	height: 2px;
	width: 30px;
	display: block;
	margin-bottom: 5px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

body .sidebarBtn .bar:nth-child(2),
body .sidebarBtn .bar:nth-child(3) {
	width: 25px;
	margin-right: 5px;
}

@media (max-width: 320px ) {
	body .sidebarBtn .bar {
		width: 25px;
	}

	body .sidebarBtn .bar:nth-child(2),
	body .sidebarBtn .bar:nth-child(3) {
		width: 20px;
	}
}

body .sidebarBtn .bar:last-child {
	margin-bottom: 0;
}

body.slidemenuon .sidebarBtn .bar:nth-child(2),
body.slidemenuon .sidebarBtn .bar:nth-child(3) {
	opacity: 0;
}

body.slidemenuon .sidebarBtn .bar:nth-child(1) {
	-webkit-transform: rotate(-45deg) translate(-7px, 7px);
	-ms-transform: rotate(-45deg) translate(-7px, 7px);
	transform: rotate(-45deg) translate(-7px, 7px);
}

body.slidemenuon .sidebarBtn .bar:nth-child(4) {
	-webkit-transform: rotate(45deg) translate(-8px, -8px);
	-ms-transform: rotate(45deg) translate(-8px, -8px);
	transform: rotate(45deg) translate(-8px, -8px);
}

/*------------------- Unit Test Style -------------------*/
.blog-widget select,
.footer-widget select {
	background-color: #fff;
	border: 1px solid #e3e3e3;
	padding: 14px 13px;
	width: 100%;
	outline: none;
}

.widget_categories select,
.widget_archive select,
.widget_text select {
	appearance: none;
	background-size: 12px;
	background-image: url(../img/select-arrow.png) !important;
	background-repeat: no-repeat;
	background-position: 4%;
}

.blog-widget.widget_calendar caption,
.footer-widget.widget_calendar caption {
	caption-side: initial;
	text-align: center;
	font-weight: 500;
	background: var(--color-primary);
	color: #ffffff;
	padding: 13px 7px;
	margin-top: 0px;
}
.footer-widget.widget_calendar td {
	color: #BBB6B6;
}
.blog-widget.widget_calendar table td#today,
.footer-widget.widget_calendar table td#today {
	background: var(--color-primary);
	color: #ffffff;
}

.blog-widget.widget_calendar a,
.footer-widget.widget_calendar a {
	color: var(--color-primary);
	font-weight: 700;
}

.wp-block-image {
	margin-top: 23px;
	margin-bottom: 23px;
}

.wp-block-image .alignleft {
	margin-top: 8px;
	margin-bottom: 8px;
	margin-left: 25px;
}

/*------------------- gutenberg with sidebar -------------------*/
.has-sidebar .wp-block-cover.alignwide,
.has-sidebar .wp-block-cover.alignfull,
.has-sidebar .wp-block-image.alignfull,
.has-sidebar .wp-block-columns.alignfull,
.has-sidebar .wp-block-media-text.alignfull,
.has-sidebar .wp-block-gallery.alignfull,
.has-sidebar .wp-block-gallery.alignwide,
.has-sidebar .wp-block-columns.alignwide,
.has-sidebar .wp-block-image.alignwide,
.has-sidebar .wp-block-media-text.alignwide,
.has-sidebar .is-type-video.alignfull,
.has-sidebar .wp-block-embed-vimeo.alignwide.wp-block-embed,
.has-sidebar .alignwide.wp-block-embed {
	margin-right: 0;
	margin-left: 0;
}

.has-strong-magenta-background-color {
	background-color: var(--color-primary);
}

.has-strong-magenta-color {
	color: var(--color-primary);
}

.has-light-grayish-magenta-background-color {
	background-color: #d0a5db;
}

.has-light-grayish-magenta-color {
	color: #d0a5db;
}

.has-very-light-gray-background-color {
	background-color: #eee;
}

.has-very-light-gray-color {
	color: #eee;
}

.has-very-dark-gray-background-color {
	background-color: #444;
}

.has-very-dark-gray-color {
	color: #444;
}

.has-small-font-size {
	font-size: 12px;
}

.has-large-font-size {
	font-size: 36px;
	line-height: 1.2;
}

.has-huge-font-size {
	font-size: 50px;
	line-height: 1.2;
}

.has-regular-font-size {
	font-size: 16px;
}

.wp-block-image.alignleft.is-resized {
	margin-right: 0;
	margin-left: 30px;
}

.wp-block-image.alignright.is-resized {
	margin-right: 30px;
	margin-left: 0;
}

.wp-block-separator {
	border: none;
	border-bottom: 2px solid #cccccc;
	margin: 50px 0;
	text-align: right;
	background: transparent;
}

.wp-block-pullquote {
	border: transparent;
	margin-bottom: 20px;
	padding: 0;
	text-align: right;
	color: #010101;
}

blockquote.wp-block-pullquote {
	background: #f9f9f9;
	border-radius: 6px;
	border-right: 1px solid #e1e1e2;
	font-size: 18px;
	font-weight: 500;
	font-style: italic;
	padding: 28px 40px 28px 40px;
	color: #444444;
}

.wp-block-pullquote p {
	font-size: 28px;
	line-height: 1.6;
	margin-bottom: 0;
}

.wp-block-pullquote cite {
	font-weight: 500;
	font-size: 13px;
	z-index: 1;
}

.wp-block-pullquote blockquote {
	padding: 28px 75px;
	margin: 35px 0px 35px;
}

.wp-block-column .wp-block-quote {
	padding-right: 40px;
}

.wp-block-column .wp-block-quote p {
	padding-right: 0;
}

.wp-block-quote.is-large,
.wp-block-quote.is-style-large {
	padding: 42px 60px !important;
}

.customize-page-selector .type-page blockquote,
.media-body blockquote,
.post-content blockquote,
.post-content blockquote.wp-block-quote,
.post-content .rt-blog-single.style-1 .quote-content {
	margin-right: 0
}

.customize-page-selector .type-page blockquote,
.media-body blockquote,
.post-content blockquote {
	padding: 42px 60px !important;
}

@media (max-width: 425px) {
	.customize-page-selector .type-page blockquote,
	.media-body blockquote, .post-content blockquote {
		padding: 30px 30px !important;
		font-size: 1.2rem;
	}
}

.wp-block-quote.is-large cite,
.wp-block-quote.is-style-large cite {
	text-align: right;
	font-size: 13px;
}

.wp-block-quote.is-style-large cite em {
	font-style: normal;
}

.wp-block-quote.has-text-align-right {
	border-right: 1px solid #e1e1e2;
	border-left: 1px solid #e1e1e2;
	text-align: left;
	padding: 35px 40px 35px 40px;
}

.wp-block-quote.has-text-align-right cite {
	text-align: left;
}

.wp-block-quote.has-text-align-left {
	text-align: right;
}

.wp-block-quote.is-large p,
.wp-block-quote.is-style-large p {
	font-size: 26px;
	line-height: 1.3;
}

.wp-block-quote.is-style-large cite br {
	display: none;
}

:root .has-cyan-bluish-gray-background-color {
	background-color: transparent;
}

.wp-block-pullquote.is-style-solid-color blockquote p {
	font-size: 32px;
}

.is-style-solid-color blockquote {
	max-width: 100% !important;
	background: #acb9c3;
	padding-top: 20px;
	padding-bottom: 25px;
}

.has-jabee-primary-background-color blockquote {
	background: var(--color-primary);
}

.has-jabee-secondary-background-color blockquote {
	background: #17bf46;
}

.has-jabee-light-background-color blockquote {
	background: #ffffff;
}

.has-jabee-black-background-color blockquote {
	background: #000000;
}

.has-jabee-dark-background-color blockquote {
	background: var(--color-secondary);
}

.has-jabee-primary-color blockquote {
	color: var(--color-primary);
}

.has-jabee-secondary-color blockquote {
	color: #17bf46;
}

.has-jabee-light-color blockquote {
	color: #ffffff;
}

.has-jabee-black-color blockquote {
	color: #000000;
}

.has-jabee-dark-color blockquote {
	color: #161619;
}

.wp-block-pullquote.alignleft,
.wp-block-pullquote.alignright,
.wp-block-pullquote.has-text-align-left,
.wp-block-pullquote.has-text-align-right {
	max-width: 1434px;
}

/* Main column width */
.wp-block {
	max-width: 720px;
}

/* Width of "wide" blocks */
.wp-block[data-align="wide"] {
	max-width: 1080px;
}

/* Width of "full-wide" blocks */
.wp-block[data-align="full"] {
	max-width: none;
}

pre {
	background: #fff;
	color: #646464;
}

code,
a code {
	color: var(--color-primary);
}

pre code {
	font-size: 15px;
	color: #646464;
	word-break: normal;
	line-height: 30px;
}

pre cite {
	font-weight: 400;
}

kbd {
	color: #646464;
	padding: 3px 5px 2px 5px;
	margin: 0 1px;
	background: #eaeaea;
	background: rgba(0, 0, 0, .07);
}

code, kbd, pre, samp, tt, var {
	font-family: Menlo, Consolas, monaco, monospace;
}
.comment-list pre {
    white-space: pre-wrap;
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    word-wrap: break-word;
}
.wp-block-code {
	font-family: Menlo, Consolas, monaco, monospace;
	font-size: 15px;
	color: #646464;
	padding: 30px;
	border: 1px solid #ebebeb;
	border-radius: 5px;
}

/*------------------- Button -------------------*/
.wp-block-button {
	margin-bottom: 25px;
}

.wp-block-button.aligncenter {
	text-align: center;
}

.wp-block-button.is-style-outline a.wp-block-button__link:not([href]):not([tabindex]) {
	color: var(--color-primary);
}

.wp-block-button.is-style-outline a.wp-block-button__link:not([href]):not([tabindex]):hover {
	color: var(--color-primary);
}

.wp-block-button .wp-block-button__link {
	position: relative;
	display: inline-block;
	border: none;
	outline: none;
	border-radius: 0;
	font-size: 16px;
	font-family: 'Urbanist', sans-serif;
	font-weight: 700;
	background: var(--color-primary);
	color: #ffffff;
	padding: 13px 28px;
	z-index: 1;
	line-height: 1.5;
	letter-spacing: 0.1em;
	overflow: hidden;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.wp-block-button .wp-block-button__link:hover {
	background: var(--color-secondary);
	color: #ffffff;
}

.wp-block-button.is-style-outline .wp-block-button__link {
	background: transparent;
	border: 1px solid var(--color-primary);
	color: var(--color-primary);
}

.wp-block-button.is-style-outline .wp-block-button__link:before {
	display: none;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
	border-color: var(--color-primary);
	color: var(--color-primary);
}

.wp-block-button .wp-block-button__link.no-border-radius,
.wp-block-button.is-style-squared .wp-block-button__link,
.wp-block-button.is-style-squared .wp-block-button__link:before {
	border-radius: 0;
}

.wp-block-button .wp-block-button__link.no-border-radius:before {
	border-radius: 0;
}

.has-jabee-primary-color {
	color: var(--color-primary);
}

.has-jabee-secondary-color {
	color: #17bf46;
}

.has-jabee-button-dark-gray-color {
	color: var(--color-secondary);
}

.has-jabee-button-light-gray-color {
	color: #f7f7f7;
}

.has-jabee-button-white-color {
	color: #ffffff;
}

.has-jabee-primary-background-color {
	background-color: var(--color-primary);
}

.has-jabee-secondary-background-color {
	background-color: #17bf46;
}

.has-jabee-button-dark-gray-background-color {
	background-color: #161619;
}

.has-jabee-button-light-gray-background-color {
	background-color: #f7f7f7;
}

.has-jabee-button-white-background-color {
	background-color: #ffffff;
}

.wp-block-button a.has-jabee-primary-color {
	color: var(--color-primary);
}

.wp-block-button a.has-jabee-secondary-color {
	color: #17bf46;
}

.wp-block-button a.has-jabee-button-dark-gray-color {
	color: #161619;
}

.wp-block-button a.has-jabee-button-light-gray-color {
	color: #f7f7f7;
}

.wp-block-button a.has-jabee-button-white-color {
	color: #ffffff;
}

.wp-block-button a.has-jabee-black-color {
	color: #000000;
}

.wp-block-button a.has-jabee-dark-color {
	color: var(--color-secondary);
}

.wp-block-button .has-jabee-primary-background-color {
	background-color: var(--color-primary);
}

.wp-block-button .has-jabee-secondary-background-color {
	background-color: #17bf46;
}

.wp-block-button .has-jabee-dark-background-color {
	background-color: #161619;
}

.wp-block-button .has-jabee-black-background-color {
	background-color: #000000;
}

.wp-block-button .has-jabee-light-background-color {
	background-color: #ffffff;
}

.wp-block-button .has-jabee-button-dark-gray-background-color {
	background-color: #161619;
}

.wp-block-button .has-jabee-button-light-gray-background-color {
	background-color: #f7f7f7;
}

.wp-block-button .has-jabee-button-white-background-color {
	background-color: #ffffff;
}

/*button end*/
/*------------------- wp block cover -------------------*/
.wp-block-cover {
	margin-top: 20px;
	margin-bottom: 20px;
}

.wp-block-cover a,
.wp-block-cover .wp-block-cover-text a,
.wp-block-cover .has-text-color a,
.wp-block-cover .has-text-align-center a {
	color: #ffffff;
}

.wp-block-cover a:hover,
.wp-block-cover .wp-block-cover-text a:hover,
.wp-block-cover .has-text-color a:hover,
.wp-block-cover .has-text-align-center a:hover {
	text-decoration: underline;
}

.wp-block-cover-image.alignleft,
.wp-block-cover-image.alignright,
.wp-block-cover.alignleft,
.wp-block-cover.alignright,
[data-align=left] > .wp-block-cover,
[data-align=right] > .wp-block-cover {
	max-width: 340px;
	width: 100%;
}

.entry-content .wp-block-cover {
	background-color: #000;
	margin-top: 0px;
	padding: 15px 45px;
}

.wp-block-cover p:not(.has-text-color) {
	color: #ffffff;
}

.wp-block-cover.alignleft {
	margin-top: 8px;
}

.wp-block-cover-image .wp-block-cover-image-text,
.wp-block-cover .wp-block-cover-text,
section.wp-block-cover-image > h2 {
	font-size: 36px;
	line-height: 1.25;
	z-index: 1;
	margin-bottom: 0;
	max-width: 100%;
	padding: .44em;
	text-align: center;
}

:root .has-pale-pink-background-color {
	background-color: #000;
}

.wp-block-gallery {
	margin-top: 25px;
	margin-bottom: 50px;
}

.wp-block-gallery.alignleft {
	display: flex;
	margin-top: 10px;
	margin-left: 30px;
}

.wp-block-gallery .blocks-gallery-item {
	overflow: hidden;
}

.wp-block-gallery.alignleft .blocks-gallery-item {
	display: inline-block;
}

.wp-block-gallery:not(.has-nested-images) {
	margin-bottom: 25px;
}

.wp-block-embed-vimeo.alignfull .wp-block-embed__wrapper {
	margin: 23px 0;
}

.wp-block-coblocks-social .wp-block-button__link {
	border: none;
}

.blocks-gallery-grid.alignleft,
.blocks-gallery-grid.alignright,
.wp-block-gallery.alignleft,
.wp-block-gallery.alignright {
	max-width: 420px;
	width: 100%;
}

p:last-child img.size-full.alignright {
	clear: both;
	padding-top: 0;
}

.wp-block-spacer {
	clear: both;
}

.gallery .gallery-item {
	text-align: center;
	margin: 0;
}

.gallery .gallery-item .gallery-icon {
	margin: 5px;
}

.site-content nav.comment-navigation {
	padding-top: 0;
}

.site-content nav.comment-navigation ul {
	margin-top: 0;
	margin-bottom: 40px;
}

.site-content nav.comment-navigation ul li {
	margin-left: 0;
}

.site-content nav.comment-navigation ul li a {
	border-radius: 30px;
	height: inherit;
	width: inherit;
	padding: 12px 27px;
	line-height: 1.6;
}

figure.wp-caption.alignnone {
	margin: 15px auto 15px;
}

.wp-block-file .wp-block-file__button {
	background: #32373c;
	padding: 10px 20px;
}

.has-media-on-the-right.is-stacked-on-mobile {
	margin-bottom: 20px;
}

.blocks-gallery-item figcaption {
	line-height: 1.4;
}

ul.wp-block-rss li.wp-block-rss__item .wp-block-rss__item-title {
	display: inline-block;
}

.wp-block-group.has-background {
	margin-bottom: 20px;
}

.wp-block-categories-dropdown select,
.wp-block-archives-dropdown select {
	width: 100%;
	color: var(--color-secondary);
	border: 1px solid #d7d7d7;
	height: 52px;
	padding: 0 12px;
}

.wp-block-group.has-background {
	margin-bottom: 20px;
	padding: 30px;
}
