@use "sass:math";


.th-mobile-menu ul li a::before {
	content: "" \f362"";
	font-family: 'Font Awesome 5 Pro';
	position: absolute;
	left: 2px;
	top: 12px;
	margin-right: 1px;
	display: inline-block;
}

.th-mobile-menu ul li.th-active>a {
	color: var(--theme-color)
}

.th-mobile-menu ul li.th-active>a:before {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg)
}

.th-mobile-menu ul li ul li:last-child {
	border-bottom: none
}

.th-mobile-menu ul .menu-item-has-children>a .th-mean-expand {
	position: absolute;
	right: 0;
	top: 50%;
	font-weight: 400;
	font-size: 17px;
	width: 25px;
	height: 25px;
	line-height: 25px;
	margin-top: -12.5px;
	display: inline-block;
	text-align: center;
	background-color: var(--smoke-color);
	color: var(--title-color);
	box-shadow: 0 0 20px -8px rgba(173, 136, 88, 0.5);
	border-radius: 50%
}

/* .th-mobile-menu ul .menu-item-has-children>a .th-mean-expand::before {
	content: "\f105";
	font-family: 'Font Awesome 5 Pro';
}

.th-mobile-menu ul .menu-item-has-children>a:after {
	content: "\f067";
	font-family: "Font Awesome 6 Free";
	width: 22px;
	height: 22px;
	line-height: 22px;
	display: inline-block;
	text-align: center;
	font-size: 12px;
	border-radius: 50px;
	background-color: var(--smoke-color);
	float: right;
	margin-top: 1px
}

.th-mobile-menu ul .menu-item-has-children.th-active>a .th-mean-expand:before {
	content: '\f068'
}

.th-mobile-menu ul .menu-item-has-children.th-active>a:after {
	content: "\f068"
} */

.th-menu-toggle.style-text,
.th-menu-toggle.style-text-white {
	width: auto;
	height: auto;
	background-color: transparent;
	color: var(--title-color);
	font-size: 20px
}

.th-menu-toggle.style-text i,
.th-menu-toggle.style-text-white i {
	margin-right: 10px
}

.th-menu-toggle.style-text-white {
	color: var(--white-color)
}

@media (max-width: 400px) {
	.th-menu-wrapper .th-menu-area {
		width: 100%;
		max-width: 270px
	}

	.th-mobile-menu>ul {
		padding: 0 20px
	}
}

.preloader {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 999;
	background-color: var(--white-color)
}

.preloader .th-btn {
	padding: 15px 20px;
	border-radius: 0;
	font-size: 14px
}

.preloader-inner {
	text-align: center;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	text-align: center;
	line-height: 1
}

.preloader-inner img {
	display: block;
	margin: 0 auto 0 auto
}

.loader {
	font-size: 80px;
	display: inline-block;
	font-family: var(--title-font);
	font-weight: 700;
	color: var(--title-color);
	box-sizing: border-box;
	text-shadow: 0 0 2px var(--theme-color), 0 0 1px var(--theme-color), 0 0 1px var(--theme-color);
	position: relative;
	line-height: normal
}

.loading-text {
	position: absolute;
	left: 0;
	top: 0;
	color: var(--theme-color);
	width: 100%;
	height: 100%;
	overflow: hidden;
	box-sizing: border-box;
	-webkit-animation: animloader 6s linear infinite;
	animation: animloader 6s linear infinite
}

@-webkit-keyframes animloader {
	0% {
		width: 0%
	}

	100% {
		width: 100%
	}
}

@keyframes animloader {
	0% {
		width: 0%
	}

	100% {
		width: 100%
	}
}

.th-btn {
	position: relative;
	z-index: 2;
	vertical-align: middle;
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	border: none;
	text-align: center;
	background-color: var(--theme-color);
	color: var(--white-color);
	font-family: var(--body-font);
	font-size: 15px;
	font-weight: 500;
	line-height: 1;
	padding: 20px 30px;
	min-width: 150px;
	border-radius: 50px;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	overflow: hidden;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

.th-btn i {
	-webkit-transition: 0.2s;
	transition: 0.2s;
	color: var(--white-color)
}

.th-btn:focus,
.th-btn:hover,
.th-btn:active {
	background: var(--theme-color);
	color: var(--white-color)
}

.th-btn:focus i,
.th-btn:hover i,
.th-btn:active i {
	color: var(--white-color)
}

.th-btn:focus i.fa-arrow-up-right,
.th-btn:hover i.fa-arrow-up-right,
.th-btn:active i.fa-arrow-up-right {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg)
}

.th-btn:focus:after,
.th-btn:hover:after,
.th-btn:active:after {
	-webkit-animation: ani 0.5s steps(22) forwards;
	animation: ani 0.5s steps(22) forwards
}

.th-btn.style2 {
	background: var(--white-color)
}

.th-btn.style2:after {
	background: var(--theme-color)
}

.th-btn.style2:focus,
.th-btn.style2:hover,
.th-btn.style2:active {
	color: var(--title-color)
}

.th-btn.style2:focus i,
.th-btn.style2:hover i,
.th-btn.style2:active i {
	color: var(--title-color)
}

.th-btn.style3 {
	background: var(--title-color)
}

.th-btn.style3:after {
	background: var(--theme-color)
}

.th-btn.style4 {
	background: var(--theme-color)
}

.th-btn.style4:after {
	background: var(--black-color3)
}

.th-btn.style5 {
	background: var(--white-color)
}

.th-btn.style5:after {
	background: var(--title-color)
}

.th-btn.style5:hover {
	color: var(--title-color)
}

.th-btn.style-border {
	border: 2px solid var(--th-border-color);
	background: var(--title-color);
	color: var(--title-color);
	padding: 19px 30px
}

.th-btn.style-border i {
	color: var(--title-color)
}

.th-btn.style-border:after {
	background: var(--white-color)
}

.th-btn.style-border:focus,
.th-btn.style-border:active,
.th-btn.style-border:hover {
	border: 2px solid var(--title-color);
	color: var(--white-color)
}

.th-btn.style-border:focus i,
.th-btn.style-border:active i,
.th-btn.style-border:hover i {
	color: var(--white-color)
}

.th-btn.style-border2 {
	border: 2px solid var(--white-color);
	background: transparent;
	color: var(--white-color);
	padding: 19px 30px
}

.th-btn.style-border2:after {
	background: transparent
}

.th-btn.style-border2:focus,
.th-btn.style-border2:active,
.th-btn.style-border2:hover {
	border: 2px solid var(--white-color);
	color: var(--title-color);
	background: var(--white-color)
}

.th-btn.style-border2:focus i,
.th-btn.style-border2:active i,
.th-btn.style-border2:hover i {
	color: var(--title-color)
}

.th-btn.style-border2:focus:after,
.th-btn.style-border2:active:after,
.th-btn.style-border2:hover:after {
	background: var(--theme-color)
}

.th-btn.style-border3 {
	border: 1px solid var(--black-color3);
	background: transparent;
	color: var(--white-color);
	padding: 20px 30px
}

.th-btn.style-border3:after {
	background: transparent
}

.th-btn.style-border3:focus,
.th-btn.style-border3:active,
.th-btn.style-border3:hover {
	border: 1px solid var(--white-color);
	color: var(--title-color);
	background: var(--white-color)
}

.th-btn.style-border3:focus i,
.th-btn.style-border3:active i,
.th-btn.style-border3:hover i {
	color: var(--title-color)
}

.th-btn.style-border3:focus:after,
.th-btn.style-border3:active:after,
.th-btn.style-border3:hover:after {
	background: var(--theme-color)
}

.th-btn.style-border4 {
	border: 2px solid var(--white-color);
	background: transparent;
	color: var(--white-color);
	padding: 19px 30px
}

.th-btn.style-border4:after {
	background: transparent
}

.th-btn.style-border4:focus,
.th-btn.style-border4:active,
.th-btn.style-border4:hover {
	border: 2px solid var(--theme-color);
	color: var(--white-color);
	background: var(--theme-color)
}

.th-btn.style-border4:focus i,
.th-btn.style-border4:active i,
.th-btn.style-border4:hover i {
	color: var(--white-color)
}

.th-btn.style-border4:focus:after,
.th-btn.style-border4:active:after,
.th-btn.style-border4:hover:after {
	background: var(--white-color)
}

.th-btn.style-gradient {
	-webkit-mask-image: url(../img/theme-img/btn-shape.png);
	mask-image: url(../img/theme-img/btn-shape.png);
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
	border-radius: 0;
	background: var(--title-color)
}

.th-btn.style-gradient:after {
	/*! background:-webkit-linear-gradient(left, var(--theme-color) 0%, var(--theme-color3) 100%); */
	background: linear-gradient(90deg, var(--theme-color) 0%, var(--theme-color3) 100%)
}

.th-btn.style-gradient2 {
	/* -webkit-mask-image: url(../img/theme-img/btn-shape.png); */
	/* mask-image: url(../img/theme-img/btn-shape.png); */
	-webkit-mask-size: 100% 100%;
	/* mask-size: 100% 100%; */
	border-radius: 0;
	background: var(--white-color);
	border: 1px solid transparent;
	border-top-left-radius: 20px;
	border-bottom-right-radius: 20px;
}

.th-btn.style-gradient2:after {
	background: -webkit-linear-gradient(left, var(--theme-color) 0%, var(--theme-color3) 100%);
	background: linear-gradient(90deg, var(--theme-color) 0%, var(--theme-color3) 100%)
}

.th-btn.style-gradient2:hover {
	color: var(--title-color);
	border: 1px solid #8342f6;
}

.th-btn.style-gradient2:hover i {
	color: var(--title-color)
}

.th-btn.style-gradient3 {
	-webkit-mask-image: url(../images/theme-img/btn-shape.png);
	mask-image: url(../images/theme-img/btn-shape.png);
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
	border-radius: 0;
	background: -webkit-linear-gradient(left, var(--theme-color) 0%, var(--theme-color3) 100%);
	background: linear-gradient(90deg, var(--theme-color) 0%, var(--theme-color3) 100%);
	margin: 20px 0px;
}

.blog-btn {
	margin: 0px;
}

.th-btn.style-gradient3:after {
	background: var(--title-color)
}

.th-btn.btn-fw {
	width: 100%
}

.th-btn.btn-fw:before,
.th-btn.btn-fw:after {
	display: none
}

.th-btn.btn-fw:hover {
	background: var(--theme-color);
	color: var(--white-color)
}

.th-btn.btn-md {
	padding: 20px 48px
}

.th-btn.btn-sm {
	padding: 16px 25px;
	min-width: 140px
}

.th-btn.btn-radius-0 {
	border-radius: 0
}

.th-btn.btn-radius-8 {
	border-radius: 8px
}

.th-btn.circle-btn {
	height: 210px;
	width: 210px;
	min-width: auto;
	border-radius: 50%;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	font-weight: 500;
	font-size: 16px;
	padding: 20px;
	border: 1px solid var(--black-color3)
}

.th-btn.circle-btn:after {
	background: var(--black-color)
}

@-webkit-keyframes ani {
	from {
		-webkit-mask-position: 0 0;
		mask-position: 0 0
	}

	to {
		-webkit-mask-position: 100% 0;
		mask-position: 100% 0
	}
}

@keyframes ani {
	from {
		-webkit-mask-position: 0 0;
		mask-position: 0 0
	}

	to {
		-webkit-mask-position: 100% 0;
		mask-position: 100% 0
	}
}

@-webkit-keyframes ani2 {
	from {
		-webkit-mask-position: 100% 0;
		mask-position: 100% 0
	}

	to {
		-webkit-mask-position: 0 0;
		mask-position: 0 0
	}
}

@keyframes ani2 {
	from {
		-webkit-mask-position: 100% 0;
		mask-position: 100% 0
	}

	to {
		-webkit-mask-position: 0 0;
		mask-position: 0 0
	}
}

@-webkit-keyframes btn-icon-anim {
	0% {
		top: 0;
		right: 2px
	}

	25% {
		top: -10px;
		right: -10px
	}

	50% {
		top: 10px;
		opacity: 0;
		right: 17px
	}

	100% {
		top: 0;
		right: 2px;
		opacity: 1
	}
}

@keyframes btn-icon-anim {
	0% {
		top: 0;
		right: 2px
	}

	25% {
		top: -10px;
		right: -10px
	}

	50% {
		top: 10px;
		opacity: 0;
		right: 17px
	}

	100% {
		top: 0;
		right: 2px;
		opacity: 1
	}
}

.icon-btn {
	display: inline-block;
	width: var(--btn-size, 56px);
	height: var(--btn-size, 56px);
	line-height: var(--btn-size, 56px);
	font-size: var(--btn-font-size, 20px);
	background-color: var(--icon-bg, var(--theme-color));
	color: var(--white-color);
	text-align: center;
	border-radius: 50%;
	border: 0;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	position: relative
}

.icon-btn:hover {
	background-color: var(--title-color);
	color: var(--white-color);
	border: 0
}

.icon-btn.style2 {
	border: 1px solid var(--black-color3);
	border-radius: 30px;
	background: transparent;
	width: 80px;
	--btn-size: 45px
}

.icon-btn.style2:hover {
	border-color: var(--theme-color);
	background: var(--theme-color)
}

.icon-btn.style3 {
	border: 1px solid var(--th-border-color);
	border-radius: 30px;
	background: transparent;
	width: 80px;
	color: var(--title-color);
	--btn-size: 45px
}

.icon-btn.style3:hover {
	border-color: var(--theme-color);
	background: var(--theme-color);
	color: var(--white-color)
}

.icon-btn.style4 {
	border: 1px solid var(--th-border-color);
	border-radius: 30px;
	background: transparent;
	width: 80px;
	color: var(--title-color);
	--btn-size: 45px;
	overflow: hidden
}

.icon-btn.style4:after {
	content: '';
	position: absolute;
	inset: 0;
	background: -webkit-linear-gradient(right, var(--theme-color3), var(--theme-color));
	background: linear-gradient(to left, var(--theme-color3), var(--theme-color));
	z-index: -1;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	opacity: 0
}

.icon-btn.style4:hover {
	border: 1px solid transparent;
	background: linear-gradient(-90deg, var(--theme-color3) 0%, var(--theme-color) 100%);
	color: var(--white-color);
}

.icon-btn.style4:hover:after {
	opacity: 1
}

.icon-btn.style5 {
	border: 1px solid var(--white-color);
	border-radius: 30px;
	background: transparent;
	width: 80px;
	color: var(--white-color);
	--btn-size: 45px;
	overflow: hidden;
	z-index: 1
}

.icon-btn.style5:after {
	content: '';
	position: absolute;
	inset: 0;
	background: -webkit-linear-gradient(right, var(--theme-color3), var(--theme-color));
	background: linear-gradient(to left, var(--theme-color3), var(--theme-color));
	z-index: -1;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	opacity: 0
}

.icon-btn.style5:hover {
	border: 1px solid transparent;
	background: transparent;
	color: var(--white-color)
}

.icon-btn.style5:hover:after {
	opacity: 1
}

.icon-btn.style-border {
	--icon-bg: transparent;
	border: 1px solid var(--th-border-color);
	line-height: 54px;
	color: var(--title-color)
}

.icon-btn.style-border:hover {
	color: var(--white-color)
}

.play-btn {
	display: inline-block;
	position: relative;
	z-index: 1
}

.play-btn>i {
	display: inline-block;
	width: var(--icon-size, 56px);
	height: var(--icon-size, 56px);
	line-height: var(--icon-size, 56px);
	text-align: center;
	background-color: var(--white-color);
	color: var(--theme-color);
	font-size: var(--icon-font-size, 1.4em);
	border-radius: 50%;
	z-index: 1;
	-webkit-transition: all ease 0.4s;
	transition: all ease 0.4s
}

.play-btn:after,
.play-btn:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: var(--white-color);
	z-index: -1;
	border-radius: 50%;
	-webkit-transition: all ease 0.4s;
	transition: all ease 0.4s
}

.play-btn:after {
	-webkit-animation-delay: 2s;
	animation-delay: 2s
}

.play-btn:hover:after,
.play-btn:hover::before,
.play-btn:hover i {
	background-color: var(--theme-color);
	color: var(--white-color)
}

.play-btn.style2 {
	--icon-size: 150px;
	--icon-font-size: 24px
}

.play-btn.style2 i {
	background-color: transparent;
	border: 2px solid var(--white-color);
	color: var(--white-color)
}

.play-btn.style2:before,
.play-btn.style2:after {
	background-color: transparent;
	border: 2px solid var(--white-color)
}

.play-btn.style2:hover {
	--icon-font-size: 44px
}

.play-btn.style2:hover i {
	background: var(--white-color);
	color: var(--theme-color)
}

.play-btn.style2:hover:before,
.play-btn.style2:hover:after {
	background-color: transparent
}

@media (max-width: 1199px) {
	.play-btn.style2 {
		--icon-size: 100px
	}
}

@media (max-width: 575px) {
	.play-btn.style2 {
		--icon-size: 56px;
		--icon-font-size: 20px
	}
}

.play-btn.style3 {
	--icon-size: 56px;
	--icon-font-size: 16px
}

.play-btn.style3>i {
	background-color: var(--theme-color2);
	color: var(--white-color)
}

.play-btn.style3:before,
.play-btn.style3:after {
	background-color: var(--theme-color2)
}

.play-btn.style3:hover>i {
	background-color: var(--theme-color);
	color: var(--white-color)
}

.play-btn.style3:hover:before,
.play-btn.style3:hover:after {
	background-color: var(--theme-color)
}

.play-btn.style4>i {
	--icon-size: 100px;
	color: var(--title-color)
}

.play-btn.style4:before,
.play-btn.style4:after {
	background-color: transparent;
	border: 1px solid var(--title-color)
}

.play-btn.style4:hover>i {
	color: var(--white-color)
}

.play-btn.style4:hover:before,
.play-btn.style4:hover:after {
	border: 1px solid var(--white-color)
}

.play-btn.style5 {
	--icon-size: 56px;
	--icon-font-size: 16px
}

.play-btn.style5>i {
	background-color: var(--white-color);
	color: var(--theme-color2)
}

.play-btn.style5:before,
.play-btn.style5:after {
	background-color: var(--theme-color2)
}

.play-btn.style5:hover>i {
	background-color: var(--theme-color);
	color: var(--white-color)
}

.play-btn.style5:hover:before,
.play-btn.style5:hover:after {
	background-color: var(--theme-color)
}

.play-btn.style6>i {
	--icon-size: 100px;
	color: var(--white-color);
	font-size: 20px;
	background: transparent;
	border: 2px solid var(--white-color)
}

.play-btn.style6:before,
.play-btn.style6:after {
	background: transparent;
	border: 1px solid var(--white-color)
}

.play-btn.style6:hover>i {
	color: var(--theme-color);
	border-color: var(--theme-color)
}

.play-btn.style6:hover:before,
.play-btn.style6:hover:after {
	border-color: var(--theme-color)
}

@media (max-width: 575px) {
	.play-btn.style6>i {
		--icon-size: 60px
	}
}

.play-btn.style7>i {
	--icon-size: 80px;
	background: var(--theme-color2);
	color: var(--white-color)
}

.play-btn.style7:before,
.play-btn.style7:after {
	background-color: var(--theme-color2)
}

.play-btn.style7:hover>i {
	background: var(--white-color);
	color: var(--theme-color2)
}

.play-btn.style7:hover:before,
.play-btn.style7:hover:after {
	background: var(--white-color)
}

@media (max-width: 767px) {
	.play-btn.style7>i {
		--icon-size: 60px
	}
}

.play-btn.style8>i {
	--icon-size: 40px;
	--icon-font-size: 16px;
	background: var(--white-color);
	color: var(--title-color)
}

.play-btn.style9>i {
	--icon-size: 80px;
	--icon-font-size: 20px;
	background: var(--title-color);
	color: var(--theme-color)
}

.play-btn.style9:before,
.play-btn.style9:after {
	border: 1px solid var(--white-color)
}

.play-btn.style9:hover>i {
	background: var(--theme-color2);
	color: var(--white-color)
}

.link-btn {
	font-weight: 600;
	font-size: 14px;
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	line-height: 0.8;
	position: relative;
	padding-bottom: 2px;
	margin-bottom: -2px;
	color: var(--title-color)
}

.link-btn .icon {
	overflow: hidden;
	display: inline-block;
	position: relative;
	top: -2px
}

.link-btn i {
	-webkit-transition: 0.1s all;
	transition: 0.1s all;
	position: relative;
	font-size: 14px;
	top: -1px
}

.link-btn:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 1px;
	background-color: var(--theme-color);
	-webkit-transition: all ease 0.4s;
	transition: all ease 0.4s
}

.link-btn:hover,
.link-btn.active {
	color: var(--theme-color)
}

.link-btn:hover::before,
.link-btn.active::before {
	width: 100%
}

.link-btn:hover i.fa-arrow-up-right,
.link-btn.active i.fa-arrow-up-right {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg)
}

.link-btn.style2 {
	color: var(--white-color)
}

.link-btn.style2:before {
	width: 100%;
	background: var(--white-color)
}

.link-btn.style2:hover {
	color: var(--theme-color)
}

.link-btn.style2:hover:before {
	background: var(--theme-color);
	width: 70%
}

.link-btn.style3 {
	color: var(--theme-color);
	margin-bottom: 0
}

.link-btn.style3:before {
	width: 100%;
	background: var(--theme-color)
}

.link-btn.style3:hover {
	color: var(--white-color)
}

.link-btn.style3:hover:before {
	background: var(--white-color);
	width: 70%
}

.link-btn.style4 {
	color: var(--title-color);
	margin-bottom: 0
}

.link-btn.style4:before {
	width: 100%;
	background: var(--title-color)
}

.link-btn.style4:hover {
	color: var(--theme-color)
}

.link-btn.style4:hover:before {
	width: 76%;
	background: var(--theme-color)
}

.scroll-top {
	position: fixed;
	right: 30px;
	bottom: 55px;
	height: 50px;
	width: 50px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	z-index: 10000;
	opacity: 1;
	visibility: hidden;
	-webkit-transform: translateY(45px);
	-ms-transform: translateY(45px);
	transform: translateY(45px);
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear
}

.scroll-top:after {
	content: "\f102";
	font-family: "Font Awesome 6 Free";
	position: absolute;
	text-align: center;
	line-height: 50px;
	font-size: 20px;
	color: var(--theme-color);
	left: 0;
	top: 0;
	height: 50px;
	width: 50px;
	cursor: pointer;
	display: block;
	z-index: 1;
	border: 2px solid var(--theme-color);
	box-shadow: none;
	border-radius: 50%
}

.scroll-top svg {
	color: var(--theme-color);
	border-radius: 50%;
	background: var(--white-color)
}

.scroll-top svg path {
	fill: none
}

.scroll-top .progress-circle path {
	stroke: var(--theme-color);
	stroke-width: 20px;
	box-sizing: border-box;
	-webkit-transition: all 400ms linear;
	transition: all 400ms linear
}

.scroll-top.show {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0)
}

.scroll-top.style2 svg {
	background: var(--black-color2)
}

.sub-title {
	display: inline-block;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 16px;
	font-weight: 500;
	font-family: var(--title-font);
	color: var(--theme-color);
	text-transform: uppercase;
	margin-bottom: 28px;
	line-height: 24px;
	position: relative;
	padding-bottom: 4px
}

.sub-title:before,
.sub-title:after {
	content: '';
	position: relative;
	height: 1px;
	width: 100px;
	background: var(--th-border-color);
	display: inline-block;
	top: -4px
}

.sub-title:before {
	margin-right: 20px
}

.sub-title:after {
	margin-left: 20px
}

.sub-title.text-white:after {
	background: var(--white-color)
}

.sub-title.after-none:after {
	display: none
}

.sub-title.before-none:before {
	display: none
}

.sub-title.h4 {
	font-size: 30px;
	font-weight: 600;
	line-height: 1;
	margin-top: -0.14em
}

@media (min-width: 992px) {
	.sub-title.after-lg-none:after {
		display: none
	}
}

.sub-title.style2:after,
.sub-title.style2:before {
	background: var(--title-color)
}

.sub-title.style3 {
	font-size: 16px;
	font-weight: 400;
	font-family: var(--body-font);
	background: transparent;
	padding: 10px 16px
}

.sub-title.style3:before {
	display: none
}

.sub-title.style3:after {
	width: auto;
	height: auto;
	inset: 0;
	border-radius: 48px;
	border: 1px solid transparent;
	background: -webkit-linear-gradient(0, transparent 0%, var(--theme-color) 100%) border-box;
	background: linear-gradient(0, transparent 0%, var(--theme-color) 100%) border-box;
	-webkit-mask: -webkit-linear-gradient(#fff 0 0) padding-box, -webkit-linear-gradient(#fff 0 0);
	-webkit-mask-composite: destination-out;
	mask-composite: exclude
}

.sub-title.style4:before,
.sub-title.style4:after {
	background: var(--body-color)
}

@media (max-width: 375px) {

	.sub-title:after,
	.sub-title:before {
		display: none
	}
}

.sub-title2 {
	font-size: 22px;
	font-weight: 500;
	font-family: var(--title-font);
	margin-bottom: 0;
	margin-top: -0.24em;
	position: relative;
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
	top: -0.24em
}

.sub-title2:before {
	background: var(--white-color)
}

.sub-title2:before {
	background: var(--theme-color)
}

.sub-title2 {
	color: transparent;
	background: -webkit-linear-gradient(right, var(--theme-color3) 0%, var(--theme-color) 100%);
	background: linear-gradient(-90deg, var(--theme-color3) 0%, var(--theme-color) 100%);
	-webkit-background-clip: text;
	font-size: 16px;
}

.sec-text {
	font-size: 18px
}

.box-title a {
	color: inherit
}

.box-title a:hover {
	color: var(--theme-color)
}

.box-subtitle {
	margin-bottom: 8px
}

.box-title2 {
	font-size: 20px;
	line-height: 1.5;
	font-weight: 700;
	margin-top: -0.35em
}

.box-title2 a {
	color: inherit
}

.box-title2 a:hover {
	color: var(--theme-color)
}

.title-area {
	margin-bottom: calc(var(--section-title-space) - 18px);
	position: relative;
	z-index: 2
}

.title-area.text-center .sub-title {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center
}

@media (min-width: 992px) {
	.title-area.text-lg-start.text-center .sub-title {
		-webkit-box-pack: start;
		-webkit-justify-content: start;
		-ms-flex-pack: start;
		justify-content: start
	}
}

.mb-32 {
	margin-bottom: 32px
}

hr.title-line {
	margin-top: 0;
	background-color: var(--th-border-color);
	opacity: 1;
	margin-bottom: var(--section-title-space)
}

.sec-btn {
	text-align: center
}

.sec-btn,
.title-line {
	margin-bottom: var(--section-title-space)
}

.shadow-title {
	font-family: var(--title-font);
	font-size: 400px;
	font-weight: 700;
	line-height: 1;
	color: var(--white-color);
	opacity: 0.5;
	margin: -0.42em 0 -0.60em;
	-webkit-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	position: relative;
	left: 50%;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	z-index: -1
}

@media (max-width: 1500px) {
	.shadow-title {
		font-size: 300px;
		margin: -0.42em 0 -0.61em
	}
}

@media (max-width: 1399px) {
	.shadow-title {
		font-size: 250px;
		margin: -0.42em 0 -0.62em
	}
}

@media (max-width: 1299px) {
	.shadow-title {
		font-size: 200px;
		margin: -0.42em 0 -0.62em
	}
}

@media (max-width: 1199px) {
	.shadow-title {
		font-size: 180px;
		margin: -0.42em 0 -0.63em
	}
}

@media (max-width: 991px) {
	.shadow-title {
		font-size: 140px;
		margin: -0.42em 0 -0.65em
	}
}

@media (max-width: 767px) {
	.shadow-title {
		font-size: 100px;
		margin: -0.7em 0 -0.4em
	}
}

@media (max-width: 575px) {
	.shadow-title {
		font-size: 80px;
		margin: -0.7em 0 -0.41em
	}
}

@media (max-width: 375px) {
	.shadow-title {
		font-size: 60px;
		margin: -0.7em 0 -0.4em
	}
}

.shadow-title.style2 {
	color: var(--smoke-color);
	opacity: 0.7
}

.shadow-title.style3 {
	position: absolute;
	left: -117px;
	color: var(--gray-color);
	opacity: 0.6;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	z-index: -1
}

.shadow-title.style4 {
	color: var(--smoke-color);
	opacity: 0.7;
	font-size: 330px;
	margin: -0.42em 0 -0.59em
}

@media (max-width: 1500px) {
	.shadow-title.style4 {
		font-size: 280px
	}
}

@media (max-width: 1399px) {
	.shadow-title.style4 {
		font-size: 150px;
	}
}

@media (max-width: 1299px) {
	.shadow-title.style4 {
		font-size: 200px
	}
}

@media (max-width: 1199px) {
	.shadow-title.style4 {
		font-size: 180px
	}
}

@media (max-width: 991px) {
	.shadow-title.style4 {
		font-size: 140px
	}
}

@media (max-width: 767px) {
	.shadow-title.style4 {
		font-size: 100px
	}
}

@media (max-width: 575px) {
	.shadow-title.style4 {
		font-size: 80px
	}
}

@media (max-width: 375px) {
	.shadow-title.style4 {
		font-size: 60px
	}
}

.title-area2 {
	padding: 50px 100px
}

.title-area2 .subtitle {
	color: var(--white-color);
	text-transform: uppercase;
	margin-top: -0.4em;
	margin-bottom: 5px;
	display: block
}

.title-area2 .title {
	color: var(--white-color);
	max-width: 430px;
	margin-bottom: -0.26em
}

.page-subtitle {
	font-size: 18px;
	font-weight: 500
}

.page-title {
	font-size: 40px;
	font-weight: 600
}

@media (max-width: 767px) {
	.page-title {
		font-size: 36px
	}
}

@media (max-width: 575px) {
	.page-title {
		font-size: 32px
	}
}

@media (max-width: 1700px) {
	.title-area2 {
		padding: 50px 50px
	}
}

@media (max-width: 1199px) {

	.title-area,
	.sec-title {
		--section-title-space: 60px
	}

	.title-area.mb-45,
	.sec-title.mb-45 {
		margin-bottom: 36px
	}

	.title-area.mb-50,
	.sec-title.mb-50 {
		margin-bottom: 40px
	}

	.sec-btn,
	.title-line {
		--section-title-space: 55px
	}

	.title-area2 .title {
		max-width: 300px
	}
}

@media (max-width: 991px) {

	.title-area,
	.sec-title {
		--section-title-space: 50px
	}

	.title-area.mb-45,
	.sec-title.mb-45 {
		margin-bottom: 35px
	}

	.sec-btn,
	.title-line {
		--section-title-space: 50px
	}

	.sub-title.h4 {
		font-size: 22px
	}
}

@media (max-width: 767px) {
	.title-area2 {
		text-align: center
	}

	.title-area2 .title {
		max-width: 100%
	}
}

@media (max-width: 375px) {
	.title-area2 {
		padding: 40px 20px
	}
}

.shape-mockup-wrap {
	z-index: 2;
	position: relative
}

.shape-mockup {
	position: absolute;
	z-index: -1;
	pointer-events: none
}

.shape-mockup.z-index-3 {
	z-index: 3;
	pointer-events: none
}

.shape-mockup.z-index-1 {
	z-index: 1;
	pointer-events: none
}

.shape-mockup .svg-img {
	height: 110px;
	width: 110px
}

.z-index-step1 {
	position: relative;
	z-index: 4 !important
}

.z-index-common {
	position: relative;
	z-index: 3
}

.z-index-3 {
	z-index: 3
}

.z-index-2 {
	z-index: 2
}

.z-index-n1 {
	z-index: -1
}

.media-body {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1
}

.badge {
	position: absolute;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	display: inline-block;
	text-align: center;
	background-color: var(--theme-color);
	color: var(--white-color);
	padding: 0.25em 0.45em;
	font-size: 0.7em;
	border-radius: 50%;
	top: 8px;
	right: 8px;
	font-weight: 400;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out
}

.th-social a {
	display: inline-block;
	width: var(--icon-size, 40px);
	height: var(--icon-size, 40px);
	line-height: var(--icon-size, 40px);
	background-color: var(--white-color);
	border: 0;
	color: var(--title-color);
	font-size: 18px;
	text-align: center;
	margin-right: 6px;
	border-radius: 50%
}

.th-social a:last-child {
	margin-right: 0
}

.th-social a:hover {
	background-color: var(--theme-color);
	color: var(--white-color)
}

.th-social.color-theme a {
	color: var(--body-color);
	border-color: var(--theme-color)
}

.th-social.style2 a {
	--icon-size: 40px;
	border: 1px solid var(--th-border-color);
	background: transparent;
	color: var(--body-color);
	font-size: 16px
}

.th-social.style2 a:hover {
	background: var(--theme-color);
	color: var(--white-color)
}

.th-social.style3 a {
	--icon-size: 40px
}

.th-social.style4 a {
	--icon-size: 44px;
	line-height: 46px;
	border-radius: 50%;
	background: var(--black-color2);
	color: var(--theme-color);
	border: 0
}

.th-social.style4 a:hover {
	background: var(--theme-color);
	color: var(--white-color)
}

.th-social.style5 a {
	background: var(--black-color2);
	color: var(--theme-color)
}

.th-social.style5 a:hover {
	background: var(--theme-color);
	color: var(--title-color)
}

.th-social.style6 a {
	background: var(--smoke-color);
	border: 0;
	font-size: 16px;
	--icon-size: 40px;
	line-height: 42px
}

.th-social.style6 a:hover {
	background: var(--theme-color2);
	color: var(--white-color)
}

.th-social.style7 a {
	color: var(--theme-color)
}

.th-social.style7 a:hover {
	color: var(--title-color)
}

.th-social.style8 a {
	background: var(--white-color);
	color: var(--theme-color)
}

.th-social.style8 a:hover {
	background: var(--title-color)
}

.th-social.style9 a {
	background: transparent;
	color: var(--theme-color);
	border: 1px solid var(--th-border-color);
	--icon-size: 32px;
	line-height: 32px;
	margin-right: 5px;
	font-size: 14px
}

.th-social.style9 a:hover {
	background: var(--title-color)
}

.th-social.style10 a {
	background: transparent;
	color: var(--white-color);
	border: 1px solid var(--black-color3);
	--icon-size: 46px;
	line-height: 46px;
	margin-right: 7px;
	font-size: 14px
}

.th-social.style10 a:hover {
	background: var(--theme-color);
	border-color: var(--theme-color)
}

.bg-mask {
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat
}

.box-icon img {
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.btn-group {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 30px
}

.btn-group.style2 {
	gap: 20px 70px
}

@media (max-width: 767px) {
	.btn-group.style2 {
		gap: 20px 30px
	}
}

@media (max-width: 767px) {
	.btn-group {
		gap: 20px
	}
}

.th-bg-img {
	position: absolute;
	inset: 0
}

.th-bg-img img {
	height: 100%;
	width: 100%;
	object-fit: cover
}

.color-masking {
	position: relative;
	display: inline-block
}

.color-masking .masking-src {
	position: absolute;
	inset: 0;
	mix-blend-mode: color;
	background: var(--theme-color)
}

.color-masking2 {
	position: relative;
	display: inline-block
}

.color-masking2 .masking-src {
	position: absolute;
	inset: 0;
	mix-blend-mode: color;
	background: var(--theme-color2)
}

.mfp-zoom-in .mfp-content {
	opacity: 0;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	-webkit-transform: scale(0.5);
	-ms-transform: scale(0.5);
	transform: scale(0.5)
}

.mfp-zoom-in.mfp-bg {
	opacity: 0;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease
}

.mfp-zoom-in.mfp-ready .mfp-content {
	opacity: 1;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1)
}

.mfp-zoom-in.mfp-ready.mfp-bg {
	opacity: 0.7
}

.mfp-zoom-in.mfp-removing .mfp-content {
	-webkit-transform: scale(0.7);
	-ms-transform: scale(0.7);
	transform: scale(0.7);
	opacity: 0
}

.mfp-zoom-in.mfp-removing.mfp-bg {
	opacity: 0
}

.th-radius {
	border-radius: 50px
}


.font-icon {
	font-family: var(--icon-font)
}

.font-title {
	font-family: var(--title-font)
}

.font-body {
	font-family: var(--body-font)
}

.fw-extralight {
	font-weight: 100
}

.fw-light {
	font-weight: 300
}

.fw-normal {
	font-weight: 400
}

.fw-medium {
	font-weight: 500
}

.fw-semibold {
	font-weight: 600
}

.fw-bold {
	font-weight: 700
}

.fw-extrabold {
	font-weight: 800
}

.fs-md {
	font-size: 18px
}

.fs-16 {
	font-size: 16px !important
}

.fs-20 {
	font-size: 20px !important
}

@media (max-width: 575px) {
	.fs-20 {
		font-size: 16px !important
	}
}

.fs-xs {
	font-size: 14px
}

.title-font {
	font-family: var(--title-font)
}

.bg-theme {
	background-color: var(--theme-color) !important
}

.bg-theme2 {
	background-color: var(--theme-color2) !important
}

.bg-smoke {
	background-color: var(--smoke-color) !important
}

.bg-smoke2 {
	background-color: var(--smoke-color2) !important
}

.bg-gray {
	background-color: var(--gray-color) !important
}

.bg-gray2 {
	background-color: var(--gray-color2) !important
}

.bg-gray3 {
	background-color: var(--gray-color3) !important
}

.bg-gray4 {
	background-color: var(--gray-color4) !important
}

.bg-white {
	background-color: var(--white-color) !important
}

.bg-light {
	background-color: var(--light-color) !important
}

.bg-black {
	background-color: var(--black-color) !important
}

.bg-black2 {
	background-color: var(--black-color2) !important
}

.bg-black3 {
	background-color: var(--black-color3) !important
}

.bg-black4 {
	background-color: var(--black-color4) !important
}

.bg-title {
	background-color: var(--title-color) !important
}

.bg-body {
	background-color: var(--body-color) !important
}

.gradient-body {
	background-image: -webkit-linear-gradient(349.38deg, rgba(249, 215, 175, 0.3) 0%, rgba(214, 202, 245, 0.3) 24.03%, rgba(198, 241, 255, 0.3) 45.73%, rgba(248, 242, 222, 0.3) 69.05%, rgba(212, 179, 253, 0.3) 100.44%);
	background-image: linear-gradient(100.62deg, rgba(249, 215, 175, 0.3) 0%, rgba(214, 202, 245, 0.3) 24.03%, rgba(198, 241, 255, 0.3) 45.73%, rgba(248, 242, 222, 0.3) 69.05%, rgba(212, 179, 253, 0.3) 100.44%)
}

.gr-bg1 {
	background-image: -webkit-linear-gradient(10deg, rgba(249, 215, 175, 0.3) 0%, rgba(214, 202, 245, 0.3) 23.81%, rgba(198, 241, 255, 0.3) 45.3%, rgba(248, 242, 222, 0.3) 68.4%, rgba(212, 179, 253, 0.3) 99.5%);
	background-image: linear-gradient(80deg, rgba(249, 215, 175, 0.3) 0%, rgba(214, 202, 245, 0.3) 23.81%, rgba(198, 241, 255, 0.3) 45.3%, rgba(248, 242, 222, 0.3) 68.4%, rgba(212, 179, 253, 0.3) 99.5%)
}

.gr-bg2 {
	background-image: -webkit-linear-gradient(349.38deg, rgba(249, 215, 175, 0.3) 0%, rgba(214, 202, 245, 0.3) 24.03%, rgba(198, 241, 255, 0.3) 45.73%, rgba(248, 242, 222, 0.3) 69.05%, rgba(212, 179, 253, 0.3) 100.44%);
	background-image: linear-gradient(100.62deg, rgba(249, 215, 175, 0.3) 0%, rgba(214, 202, 245, 0.3) 24.03%, rgba(198, 241, 255, 0.3) 45.73%, rgba(248, 242, 222, 0.3) 69.05%, rgba(212, 179, 253, 0.3) 100.44%)
}

.gr-bg3 {
	background-image: -webkit-linear-gradient(339.41deg, rgba(236, 207, 254, 0.4) 0%, rgba(255, 221, 221, 0.5) 46.79%, rgba(247, 255, 229, 0.7) 100%);
	background-image: linear-gradient(110.59deg, rgba(236, 207, 254, 0.4) 0%, rgba(255, 221, 221, 0.5) 46.79%, rgba(247, 255, 229, 0.7) 100%);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px)
}

.gr-bg4 {
	background-image: -webkit-linear-gradient(344.56deg, rgba(255, 229, 133, 0.4) 0%, rgba(189, 255, 199, 0.4) 48.48%, rgba(223, 109, 223, 0.4) 100%);
	background-image: linear-gradient(105.44deg, rgba(255, 229, 133, 0.4) 0%, rgba(189, 255, 199, 0.4) 48.48%, rgba(223, 109, 223, 0.4) 100%);
	-webkit-backdrop-filter: blur(15px);
	backdrop-filter: blur(15px)
}

.background-image,
[data-bg-src] {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center
}

.bg-fluid {
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-position: center center
}

.bg-auto {
	background-size: auto auto
}

.bg-top-center {
	background-size: auto;
	background-position: top center
}

.bg-repeat {
	background-size: auto;
	background-repeat: repeat
}

.bg-bottom-right {
	background-size: auto;
	background-position: bottom right
}

.bg-top-right {
	background-size: auto;
	background-position: top right
}

.bg-top-left {
	background-size: auto;
	background-position: top left
}

.bg-attachment {
	background-attachment: fixed
}

.text-theme {
	color: var(--theme-color) !important
}

.text-theme2 {
	color: var(--theme-color2) !important
}

.text-title {
	color: var(--title-color) !important
}

.text-body {
	color: var(--body-color) !important
}

.text-white {
	color: var(--white-color) !important
}

.text-light {
	color: var(--light-color) !important
}

.text-gray {
	color: var(--gray-color) !important
}

.text-gray3 {
	color: var(--gray-color3) !important
}

.text-yellow {
	color: var(--yellow-color) !important
}

.text-success {
	color: var(--success-color) !important
}

.text-error {
	color: var(--error-color) !important
}

.text-inherit {
	color: inherit
}

.text-inherit:hover {
	color: var(--theme-color)
}

a.text-theme:hover,
.text-reset:hover {
	text-decoration: underline
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%
}

.position-center {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

[data-overlay] {
	position: relative;
	z-index: 2
}

[data-overlay] [class^="col-"],
[data-overlay] [class*="col-"] {
	z-index: 1
}

[data-overlay]:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 1
}

[data-overlay="theme"]:before {
	background-color: var(--theme-color)
}

[data-overlay="theme2"]:before {
	background-color: var(--theme-color2)
}

[data-overlay="title"]:before {
	background-color: var(--title-color)
}

[data-overlay="smoke"]:before {
	background-color: var(--smoke-color)
}

[data-overlay="gray"]:before {
	background-color: var(--gray-color)
}

[data-overlay="white"]:before {
	background-color: var(--white-color)
}

[data-overlay="black"]:before {
	background-color: var(--black-color)
}

[data-overlay="black4"]:before {
	background-color: var(--black-color4)
}

[data-overlay="black7"]:before {
	background-color: var(--black-color7)
}

[data-opacity="1"]:before {
	opacity: .1
}

[data-opacity="2"]:before {
	opacity: .2
}

[data-opacity="3"]:before {
	opacity: .3
}

[data-opacity="4"]:before {
	opacity: .4
}

[data-opacity="5"]:before {
	opacity: .5
}

[data-opacity="6"]:before {
	opacity: .6
}

[data-opacity="7"]:before {
	opacity: .7
}

[data-opacity="8"]:before {
	opacity: .8
}

[data-opacity="9"]:before {
	opacity: .9
}

[data-opacity="10"]:before {
	opacity: 1
}

.ripple-animation,
.play-btn:after,
.play-btn:before {
	-webkit-animation-duration: var(--ripple-ani-duration);
	animation-duration: var(--ripple-ani-duration);
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-name: ripple;
	animation-name: ripple
}

@-webkit-keyframes ripple {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 0
	}

	30% {
		opacity: 0.4
	}

	100% {
		-webkit-transform: scale(1.8);
		transform: scale(1.8);
		opacity: 0
	}
}

@keyframes ripple {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 0
	}

	30% {
		opacity: 0.4
	}

	100% {
		-webkit-transform: scale(1.8);
		transform: scale(1.8);
		opacity: 0
	}
}

@-webkit-keyframes ripple2 {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 0
	}

	30% {
		opacity: 0.4
	}

	100% {
		-webkit-transform: scale(2.8);
		transform: scale(2.8);
		opacity: 0
	}
}

@keyframes ripple2 {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 0
	}

	30% {
		opacity: 0.4
	}

	100% {
		-webkit-transform: scale(2.8);
		transform: scale(2.8);
		opacity: 0
	}
}

.fancy-animation {
	-webkit-animation: morph 8s ease-in-out infinite;
	animation: morph 8s ease-in-out infinite
}

@-webkit-keyframes morph {
	0% {
		border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%
	}

	50% {
		border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%
	}

	100% {
		border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%
	}
}

@keyframes morph {
	0% {
		border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%
	}

	50% {
		border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%
	}

	100% {
		border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%
	}
}

.movingX {
	-webkit-animation: movingX 8s linear infinite;
	animation: movingX 8s linear infinite
}

@-webkit-keyframes movingX {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}

	50% {
		-webkit-transform: translateX(50px);
		transform: translateX(50px)
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

@keyframes movingX {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}

	50% {
		-webkit-transform: translateX(50px);
		transform: translateX(50px)
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

.shake {
	-webkit-animation: shake 2s linear infinite;
	animation: shake 2s linear infinite
}

@-webkit-keyframes shake {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}

	50% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg)
	}

	100% {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}
}

@keyframes shake {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}

	50% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg)
	}

	100% {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}
}

.movingCar {
	-webkit-animation: movingCar 25s linear infinite;
	animation: movingCar 25s linear infinite
}

@-webkit-keyframes movingCar {
	0% {
		-webkit-transform: translateX(0) rotateY(0deg);
		transform: translateX(0) rotateY(0deg)
	}

	50% {
		-webkit-transform: translateX(calc(100vw*-1 + 108%));
		transform: translateX(calc(100vw*-1 + 108%))
	}

	51% {
		-webkit-transform: translateX(calc(100vw*-1 + 108%)) rotateY(180deg);
		transform: translateX(calc(100vw*-1 + 108%)) rotateY(180deg)
	}

	100% {
		-webkit-transform: translateX(0) rotateY(180deg);
		transform: translateX(0) rotateY(180deg)
	}
}

@keyframes movingCar {
	0% {
		-webkit-transform: translateX(0) rotateY(0deg);
		transform: translateX(0) rotateY(0deg)
	}

	50% {
		-webkit-transform: translateX(calc(100vw*-1 + 108%));
		transform: translateX(calc(100vw*-1 + 108%))
	}

	51% {
		-webkit-transform: translateX(calc(100vw*-1 + 108%)) rotateY(180deg);
		transform: translateX(calc(100vw*-1 + 108%)) rotateY(180deg)
	}

	100% {
		-webkit-transform: translateX(0) rotateY(180deg);
		transform: translateX(0) rotateY(180deg)
	}
}

.moving {
	-webkit-animation: moving 8s linear infinite;
	animation: moving 8s linear infinite
}

@-webkit-keyframes moving {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}

	50% {
		-webkit-transform: translateX(-50px);
		transform: translateX(-50px)
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

@keyframes moving {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}

	50% {
		-webkit-transform: translateX(-50px);
		transform: translateX(-50px)
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

.movingY {
	-webkit-animation: movingY 8s linear infinite;
	animation: movingY 8s linear infinite
}

@-webkit-keyframes movingY {
	0% {
		left: 0
	}

	50% {
		left: calc(100% - 20px)
	}

	100% {
		left: 0
	}
}

@keyframes movingY {
	0% {
		left: 0
	}

	50% {
		left: calc(100% - 20px)
	}

	100% {
		left: 0
	}
}

.jump {
	-webkit-animation: jumpAni 7s linear infinite;
	animation: jumpAni 7s linear infinite
}

@-webkit-keyframes jumpAni {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}

	40% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px)
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@keyframes jumpAni {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}

	40% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px)
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

.jump-reverse {
	-webkit-animation: jumpReverseAni 7s linear infinite;
	animation: jumpReverseAni 7s linear infinite
}

@-webkit-keyframes jumpReverseAni {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}

	50% {
		-webkit-transform: translateY(30px);
		transform: translateY(30px)
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@keyframes jumpReverseAni {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}

	50% {
		-webkit-transform: translateY(30px);
		transform: translateY(30px)
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

.spin {
	-webkit-animation: spin 10s linear infinite;
	animation: spin 10s linear infinite
}

@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

@keyframes spin {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

.spin-reverse {
	-webkit-animation: spin2 10s linear infinite;
	animation: spin2 10s linear infinite
}

@-webkit-keyframes spin2 {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}

	100% {
		-webkit-transform: rotate(-360deg);
		transform: rotate(-360deg)
	}
}

@keyframes spin2 {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}

	100% {
		-webkit-transform: rotate(-360deg);
		transform: rotate(-360deg)
	}
}

.bounce {
	-webkit-animation: bounce 2s ease infinite;
	animation: bounce 2s ease infinite
}

@-webkit-keyframes bounce {

	0%,
	20%,
	50%,
	80%,
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}

	40% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px)
	}

	60% {
		-webkit-transform: translateY(-15px);
		transform: translateY(-15px)
	}
}

@keyframes bounce {

	0%,
	20%,
	50%,
	80%,
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}

	40% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px)
	}

	60% {
		-webkit-transform: translateY(-15px);
		transform: translateY(-15px)
	}
}

.bg-color-ani,
.color-animate {
	-webkit-animation: bgColor 6s linear infinite;
	animation: bgColor 6s linear infinite
}

@-webkit-keyframes bgColor {
	0% {
		background-color: #F2BA4C
	}

	25% {
		background-color: #81F24C
	}

	50% {
		background-color: #41F27D
	}

	75% {
		background-color: #0500FF
	}

	100% {
		background-color: #F2BA4C
	}
}

@keyframes bgColor {
	0% {
		background-color: #F2BA4C
	}

	25% {
		background-color: #81F24C
	}

	50% {
		background-color: #41F27D
	}

	75% {
		background-color: #0500FF
	}

	100% {
		background-color: #F2BA4C
	}
}

@-webkit-keyframes animate-positive {
	0% {
		width: 0
	}
}

@keyframes animate-positive {
	0% {
		width: 0
	}
}

.fadein,
.scalein,
.slidetopleft,
.slidebottomright,
.slideinleft,
.slideinright,
.slideindown,
.slideinup,
.rollinleft,
.rollinright {
	opacity: 0;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-duration: 1.3s;
	animation-duration: 1.3s;
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
	-webkit-animation-name: var(--animation-name);
	animation-name: var(--animation-name)
}

.swiper-slide-active .fadein {
	--animation-name: fadein
}

.swiper-slide-active .scalein {
	--animation-name: scalein
}

.swiper-slide-active .slidetopleft {
	--animation-name: slidetopleft
}

.swiper-slide-active .slidebottomright {
	--animation-name: slidebottomright
}

.swiper-slide-active .slideinleft {
	--animation-name: slideinleft
}

.swiper-slide-active .slideinright {
	--animation-name: slideinright
}

.swiper-slide-active .slideinup {
	--animation-name: slideinup
}

.swiper-slide-active .slideindown {
	--animation-name: slideindown
}

.swiper-slide-active .rollinleft {
	--animation-name: rollinleft
}

.swiper-slide-active .rollinright {
	--animation-name: rollinright
}

@-webkit-keyframes fadein {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

@keyframes fadein {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

@-webkit-keyframes slideinup {
	0% {
		opacity: 0;
		-webkit-transform: translateY(100px);
		transform: translateY(100px)
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@keyframes slideinup {
	0% {
		opacity: 0;
		-webkit-transform: translateY(100px);
		transform: translateY(100px)
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@-webkit-keyframes slideinright {
	0% {
		opacity: 0;
		-webkit-transform: translateX(180px);
		transform: translateX(180px)
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

@keyframes slideinright {
	0% {
		opacity: 0;
		-webkit-transform: translateX(180px);
		transform: translateX(180px)
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

@-webkit-keyframes slideindown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-100px);
		transform: translateY(-100px)
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@keyframes slideindown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-100px);
		transform: translateY(-100px)
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@-webkit-keyframes slideinleft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-100px);
		transform: translateX(-100px)
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

@keyframes slideinleft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-100px);
		transform: translateX(-100px)
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

@-webkit-keyframes slidebottomright {
	0% {
		opacity: 0;
		-webkit-transform: translateX(120px) translateY(120px);
		transform: translateX(120px) translateY(120px)
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0) translateY(0);
		transform: translateX(0) translateY(0)
	}
}

@keyframes slidebottomright {
	0% {
		opacity: 0;
		-webkit-transform: translateX(120px) translateY(120px);
		transform: translateX(120px) translateY(120px)
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0) translateY(0);
		transform: translateX(0) translateY(0)
	}
}

@-webkit-keyframes slidetopleft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-100px) translateY(-100px);
		transform: translateX(-100px) translateY(-100px)
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0) translateY(0);
		transform: translateX(0) translateY(0)
	}
}

@keyframes slidetopleft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-100px) translateY(-100px);
		transform: translateX(-100px) translateY(-100px)
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0) translateY(0);
		transform: translateX(0) translateY(0)
	}
}

.animation-bubble {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	overflow: hidden;
	z-index: 1;
	pointer-events: none
}

.animation-bubble div[class^=bubble-] {
	height: 1px;
	width: 1px;
	position: absolute;
	background: url(../img/shape/star.svg) no-repeat center center;
	background-size: cover;
	border-radius: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	pointer-events: none
}

@media (max-width: 1024px) {
	.animation-bubble>:nth-child(even) {
		display: none
	}
}

.bubble-1 {
	bottom: -5px;
	left: 68%;
	-webkit-animation: bubble-animation 4.5s infinite ease-in -6.57s;
	animation: bubble-animation 4.5s infinite ease-in -6.57s
}

.bubble-2 {
	bottom: -71px;
	left: 97%;
	-webkit-animation: bubble-animation 4.5s infinite ease-in -5.07s;
	animation: bubble-animation 4.5s infinite ease-in -5.07s
}

.bubble-3 {
	bottom: -71px;
	left: 43%;
	-webkit-animation: bubble-animation 4.5s infinite ease-in -6.73s;
	animation: bubble-animation 4.5s infinite ease-in -6.73s
}

.bubble-4 {
	bottom: -3.8px;
	left: 82%;
	-webkit-animation: bubble-animation 4.5s infinite ease-in -4.04s;
	animation: bubble-animation 4.5s infinite ease-in -4.04s
}

.bubble-5 {
	bottom: -73.4px;
	left: 29%;
	-webkit-animation: bubble-animation 4.5s infinite ease-in -3.11s;
	animation: bubble-animation 4.5s infinite ease-in -3.11s
}

.bubble-6 {
	bottom: -71px;
	left: 41%;
	-webkit-animation: bubble-animation 4.5s infinite ease-in -5.95s;
	animation: bubble-animation 4.5s infinite ease-in -5.95s
}

.bubble-7 {
	bottom: -79.4px;
	left: 14%;
	-webkit-animation: bubble-animation 4.5s infinite ease-in -3.68s;
	animation: bubble-animation 4.5s infinite ease-in -3.68s
}

.bubble-8 {
	bottom: -115.4px;
	left: 90%;
	-webkit-animation: bubble-animation 4.5s infinite ease-in -3.89s;
	animation: bubble-animation 4.5s infinite ease-in -3.89s
}

.bubble-9 {
	bottom: -44.6px;
	left: 33%;
	-webkit-animation: bubble-animation 4.5s infinite ease-in -1.09s;
	animation: bubble-animation 4.5s infinite ease-in -1.09s
}

.bubble-10 {
	bottom: -6.2px;
	left: 59%;
	-webkit-animation: bubble-animation 4.5s infinite ease-in -.96s;
	animation: bubble-animation 4.5s infinite ease-in -.96s
}

@-webkit-keyframes bubble-animation {
	0% {
		-webkit-transform: translate3d(-50%, 0, 0);
		transform: translate3d(-50%, 0, 0);
		height: 1px;
		width: 1px
	}

	100% {
		-webkit-transform: translate3d(-50%, -280px, 0);
		transform: translate3d(-50%, -280px, 0);
		height: 30px;
		width: 30px
	}
}

@keyframes bubble-animation {
	0% {
		-webkit-transform: translate3d(-50%, 0, 0);
		transform: translate3d(-50%, 0, 0);
		height: 1px;
		width: 1px
	}

	100% {
		-webkit-transform: translate3d(-50%, -280px, 0);
		transform: translate3d(-50%, -280px, 0);
		height: 30px;
		width: 30px
	}
}

@-webkit-keyframes toTopFromBottom {
	49% {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%)
	}

	50% {
		opacity: 0;
		-webkit-transform: translateY(100%);
		transform: translateY(100%)
	}

	51% {
		opacity: 1
	}
}

@keyframes toTopFromBottom {
	49% {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%)
	}

	50% {
		opacity: 0;
		-webkit-transform: translateY(100%);
		transform: translateY(100%)
	}

	51% {
		opacity: 1
	}
}

.custom-anim-right {
	-webkit-animation: custom-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
	animation: custom-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
	opacity: 0
}

@-webkit-keyframes custom-anim-right {
	0% {
		-webkit-transform: translateX(5%);
		transform: translateX(5%);
		-webkit-clip-path: inset(0 0 0 100%);
		clip-path: inset(0 0 0 100%);
		opacity: 0
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
		-webkit-clip-path: inset(0 0 0 0);
		clip-path: inset(0 0 0 0);
		opacity: 1
	}
}

@keyframes custom-anim-right {
	0% {
		-webkit-transform: translateX(5%);
		transform: translateX(5%);
		-webkit-clip-path: inset(0 0 0 100%);
		clip-path: inset(0 0 0 100%);
		opacity: 0
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
		-webkit-clip-path: inset(0 0 0 0);
		clip-path: inset(0 0 0 0);
		opacity: 1
	}
}

.custom-anim-left {
	-webkit-animation: custom-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
	animation: custom-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
	opacity: 0
}

@-webkit-keyframes custom-anim-left {
	0% {
		-webkit-transform: translateX(-5%);
		transform: translateX(-5%);
		-webkit-clip-path: inset(0 100% 0 0);
		clip-path: inset(0 100% 0 0);
		opacity: 0
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
		-webkit-clip-path: inset(0 0 0 0);
		clip-path: inset(0 0 0 0);
		opacity: 1
	}
}

@keyframes custom-anim-left {
	0% {
		-webkit-transform: translateX(-5%);
		transform: translateX(-5%);
		-webkit-clip-path: inset(0 100% 0 0);
		clip-path: inset(0 100% 0 0);
		opacity: 0
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
		-webkit-clip-path: inset(0 0 0 0);
		clip-path: inset(0 0 0 0);
		opacity: 1
	}
}

.custom-anim-top {
	-webkit-animation: custom-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
	animation: custom-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
	opacity: 0
}

@-webkit-keyframes custom-anim-top {
	0% {
		-webkit-transform: translateY(-5%);
		transform: translateY(-5%);
		-webkit-clip-path: inset(0 0 100% 0);
		clip-path: inset(0 0 100% 0);
		opacity: 0
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		-webkit-clip-path: inset(0 0 0 0);
		clip-path: inset(0 0 0 0);
		opacity: 1
	}
}

@keyframes custom-anim-top {
	0% {
		-webkit-transform: translateY(-5%);
		transform: translateY(-5%);
		-webkit-clip-path: inset(0 0 100% 0);
		clip-path: inset(0 0 100% 0);
		opacity: 0
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		-webkit-clip-path: inset(0 0 0 0);
		clip-path: inset(0 0 0 0);
		opacity: 1
	}
}

.custom-anim-bottom {
	-webkit-animation: custom-anim-bottom 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
	animation: custom-anim-bottom 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
	opacity: 0
}

@-webkit-keyframes custom-anim-bottom {
	0% {
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
		-webkit-clip-path: inset(100% 0 0 0);
		clip-path: inset(100% 0 0 0);
		opacity: 0
	}

	100% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		-webkit-clip-path: inset(0 0 0 0);
		clip-path: inset(0 0 0 0);
		opacity: 1
	}
}

@keyframes custom-anim-bottom {
	0% {
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
		-webkit-clip-path: inset(100% 0 0 0);
		clip-path: inset(100% 0 0 0);
		opacity: 0
	}

	100% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		-webkit-clip-path: inset(0 0 0 0);
		clip-path: inset(0 0 0 0);
		opacity: 1
	}
}

.fadeinup {
	opacity: 0;
	-webkit-animation: fadeinup 1.3s forwards 1;
	animation: fadeinup 1.3s forwards 1
}

@-webkit-keyframes fadeinup {
	0% {
		opacity: 0;
		-webkit-transform: translateY(100px);
		transform: translateY(100px)
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@keyframes fadeinup {
	0% {
		opacity: 0;
		-webkit-transform: translateY(100px);
		transform: translateY(100px)
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

.fadeinright {
	opacity: 0;
	-webkit-animation: fadeinright 1.3s forwards 1;
	animation: fadeinright 1.3s forwards 1
}

@-webkit-keyframes fadeinright {
	0% {
		opacity: 0;
		-webkit-transform: translateX(100px);
		transform: translateX(100px)
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

@keyframes fadeinright {
	0% {
		opacity: 0;
		-webkit-transform: translateX(100px);
		transform: translateX(100px)
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

.fadeinleft {
	opacity: 0;
	-webkit-animation: fadeinleft 1.3s forwards 1;
	animation: fadeinleft 1.3s forwards 1
}

@-webkit-keyframes fadeinleft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-50px);
		transform: translateX(-50px)
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

@keyframes fadeinleft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-50px);
		transform: translateX(-50px)
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

.widget_nav_menu ul,
.widget_meta ul,
.widget_pages ul,
.widget_archive ul,
.widget_categories ul,
.wp-block-page-list ul,
.wp-block-archives ul,
.wp-block-categories ul {
	list-style: none;
	padding: 0;
	margin: 0 0 0 0
}

.widget_nav_menu a,
.widget_meta a,
.widget_pages a,
.widget_archive a,
.widget_categories a,
.wp-block-page-list a,
.wp-block-archives a,
.wp-block-categories a {
	display: block;
	background-color: transparent;
	margin: 0 0 15px;
	padding: 0;
	font-size: 16px;
	line-height: 1.313;
	color: var(--body-color);
	-webkit-transition: 0.4s all ease;
	transition: 0.4s all ease
}

.widget_nav_menu a i,
.widget_meta a i,
.widget_pages a i,
.widget_archive a i,
.widget_categories a i,
.wp-block-page-list a i,
.wp-block-archives a i,
.wp-block-categories a i {
	font-size: 6px;
	color: var(--title-color);
	margin-right: 10px;
	position: relative;
	top: -4px
}

.widget_nav_menu li,
.widget_meta li,
.widget_pages li,
.widget_archive li,
.widget_categories li,
.wp-block-page-list li,
.wp-block-archives li,
.wp-block-categories li {
	display: block;
	position: relative;
	margin-bottom: 15px
}

.widget_nav_menu li>span,
.widget_meta li>span,
.widget_pages li>span,
.widget_archive li>span,
.widget_categories li>span,
.wp-block-page-list li>span,
.wp-block-archives li>span,
.wp-block-categories li>span {
	color: var(--title-color);
	text-align: center;
	position: absolute;
	right: 0;
	top: -2px;
	-webkit-transition: all ease 0.4s;
	transition: all ease 0.4s;
	pointer-events: none;
	min-width: 20px;
	text-align: right
}

.widget_nav_menu .menu,
.widget_nav_menu>ul,
.widget_meta .menu,
.widget_meta>ul,
.widget_pages .menu,
.widget_pages>ul,
.widget_archive .menu,
.widget_archive>ul,
.widget_categories .menu,
.widget_categories>ul,
.wp-block-page-list .menu,
.wp-block-page-list>ul,
.wp-block-archives .menu,
.wp-block-archives>ul,
.wp-block-categories .menu,
.wp-block-categories>ul {
	margin-top: -0.3em;
	margin-bottom: -0.3em
}

.widget_nav_menu .menu>li:last-child,
.widget_nav_menu>ul>li:last-child,
.widget_meta .menu>li:last-child,
.widget_meta>ul>li:last-child,
.widget_pages .menu>li:last-child,
.widget_pages>ul>li:last-child,
.widget_archive .menu>li:last-child,
.widget_archive>ul>li:last-child,
.widget_categories .menu>li:last-child,
.widget_categories>ul>li:last-child,
.wp-block-page-list .menu>li:last-child,
.wp-block-page-list>ul>li:last-child,
.wp-block-archives .menu>li:last-child,
.wp-block-archives>ul>li:last-child,
.wp-block-categories .menu>li:last-child,
.wp-block-categories>ul>li:last-child {
	border-bottom: 0;
	margin-bottom: 0
}

.widget_nav_menu .menu>li:last-child>a,
.widget_nav_menu>ul>li:last-child>a,
.widget_meta .menu>li:last-child>a,
.widget_meta>ul>li:last-child>a,
.widget_pages .menu>li:last-child>a,
.widget_pages>ul>li:last-child>a,
.widget_archive .menu>li:last-child>a,
.widget_archive>ul>li:last-child>a,
.widget_categories .menu>li:last-child>a,
.widget_categories>ul>li:last-child>a,
.wp-block-page-list .menu>li:last-child>a,
.wp-block-page-list>ul>li:last-child>a,
.wp-block-archives .menu>li:last-child>a,
.wp-block-archives>ul>li:last-child>a,
.wp-block-categories .menu>li:last-child>a,
.wp-block-categories>ul>li:last-child>a {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: 0
}

.widget_nav_menu a:hover,
.widget_meta a:hover,
.widget_pages a:hover,
.widget_archive a:hover,
.widget_categories a:hover,
.wp-block-page-list a:hover,
.wp-block-archives a:hover,
.wp-block-categories a:hover {
	color: var(--theme-color)
}

.widget_nav_menu a:hover~span,
.widget_meta a:hover~span,
.widget_pages a:hover~span,
.widget_archive a:hover~span,
.widget_categories a:hover~span,
.wp-block-page-list a:hover~span,
.wp-block-archives a:hover~span,
.wp-block-categories a:hover~span {
	color: var(--theme-color)
}

.widget_nav_menu .sub-menu,
.widget_nav_menu .children,
.widget_meta .sub-menu,
.widget_meta .children,
.widget_pages .sub-menu,
.widget_pages .children,
.widget_archive .sub-menu,
.widget_archive .children,
.widget_categories .sub-menu,
.widget_categories .children,
.wp-block-page-list .sub-menu,
.wp-block-page-list .children,
.wp-block-archives .sub-menu,
.wp-block-archives .children,
.wp-block-categories .sub-menu,
.wp-block-categories .children {
	margin-left: 10px
}

.wp-block-archives,
.wp-block-page-list,
.wp-block-categories {
	list-style: none;
	padding: 0;
	margin: 0
}

.wp-block-archives>li:last-child,
.wp-block-page-list>li:last-child,
.wp-block-categories>li:last-child {
	margin-bottom: 0
}

.wp-block-archives>li:last-child>a,
.wp-block-page-list>li:last-child>a,
.wp-block-categories>li:last-child>a {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0
}

.widget_nav_menu a,
.widget_meta a,
.widget_pages a {
	padding-right: 20px
}

.widget_nav_menu .sub-menu {
	margin-left: 10px
}

.wp-block-archives {
	list-style: none;
	margin: 0;
	padding: 0
}

.wp-block-archives a:not(:hover) {
	color: inherit
}

.th-blog ul.wp-block-archives li {
	margin: 5px 0
}

.widget {
	padding: var(--widget-padding-y, 0px) var(--widget-padding-x, 0px);
	background-color: transparent;
	margin-bottom: 40px;
	position: relative
}

.widget[data-overlay]:before {
	z-index: -1;
	border-radius: 8px
}

.widget select,
.widget input,
.widget .form-select,
.widget .form-control,
.widget textarea {
	background-color: var(--white-color)
}

.widget textarea {
	min-height: 120px
}

.widget .form-group>i {
	background-color: var(--white-color)
}

.wp-block-archives__label,
.widget_title {
	position: relative;
	font-size: 24px;
	font-weight: 700;
	font-family: var(--title-font);
	line-height: 1em;
	margin: -0.12em 0 26px 0
}

.widget-form {
	--bs-gutter-x: 20px
}

.widget .search-form {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex
}

.widget .search-form input {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	border-radius: 100px;
	padding-right: 85px;
	border: 1px solid var(--th-border-color);
	height: 56px
}

.widget .search-form input:focus {
	border-color: var(--theme-color)
}

.widget .search-form button {
	border: none;
	font-size: 16px;
	background-color: transparent;
	color: var(--theme-color);
	display: inline-block;
	padding: 0;
	width: auto;
	height: 24px;
	text-align: center;
	border-radius: 0;
	position: absolute;
	top: 16px;
	right: 24px;
	border-left: 1px solid var(--th-border-color);
	padding-left: 28px
}

.widget .search-form button:hover {
	color: var(--title-color)
}

.wp-block-tag-cloud,
.tagcloud {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0
}

.wp-block-tag-cloud a,
.tagcloud a {
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	font-family: var(--body-font);
	text-transform: capitalize;
	line-height: 1;
	padding: 16px 20px;
	color: var(--body-color);
	background-color: var(--white-color);
	border-radius: 30px;
	letter-spacing: 0.02em;
	box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05)
}

.wp-block-tag-cloud a:hover,
.tagcloud a:hover {
	background-color: var(--theme-color);
	color: var(--white-color) !important;
	border-color: var(--theme-color)
}

.sidebar-gallery {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	max-width: 320px
}

.sidebar-gallery .gallery-btn {
	position: absolute;
	top: 20px;
	left: 0;
	color: var(--white-color);
	visibility: hidden;
	opacity: 0;
	height: 100%;
	width: 100%;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	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: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 18px
}

.sidebar-gallery .gallery-btn:hover {
	color: var(--theme-color)
}

.sidebar-gallery .gallery-thumb {
	overflow: hidden;
	position: relative;
	border-radius: 20px
}

.sidebar-gallery .gallery-thumb:before {
	content: '';
	height: 100%;
	width: 100%;
	background-color: var(--theme-color);
	mix-blend-mode: multiply;
	opacity: 0.8;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	border-radius: inherit;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.sidebar-gallery .gallery-thumb img {
	width: 100%
}

.sidebar-gallery .gallery-thumb:hover:before {
	-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1)
}

.sidebar-gallery .gallery-thumb:hover .gallery-btn {
	visibility: visible;
	opacity: 1;
	top: 0
}

.sidebar-gallery .gallery-thumb:hover .gallery-btn:hover {
	color: var(--white-color)
}

.sidebar-gallery .wp-block-image {
	overflow: hidden;
	position: relative;
	border-radius: 5px;
	width: 100% !important
}

.sidebar-gallery .wp-block-image img {
	width: 100%
}

.recent-post {
	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;
	margin-bottom: 32px
}

.recent-post:last-child {
	margin-bottom: 0
}

.recent-post .media-img {
	margin-right: 15px;
	width: 85px;
	overflow: hidden;
	border-radius: 16px;
	position: relative
}

.recent-post .media-img img {
	width: 100%;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.recent-post .media-img:after {
	content: '\f0c1';
	font-family: "Font Awesome 6 Free";
	position: absolute;
	inset: 0;
	text-align: center;
	line-height: 85px;
	font-size: 24px;
	background-color: rgba(0, 0, 0, 0.7);
	color: var(--theme-color);
	pointer-events: none;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.recent-post .post-title {
	font-weight: 500;
	font-size: 20px;
	line-height: 1.5em;
	margin: 10px 0 -0.35em 0;
	font-family: var(--title-font);
	text-transform: capitalize
}

@media (max-width: 1500px) {
	.recent-post .post-title {
		font-size: 18px
	}
}

@media (max-width: 1399px) {
	.recent-post .post-title {
		font-size: 16px
	}
}

@media (max-width: 1299px) {
	.recent-post .post-title {
		font-size: 14px
	}
}

.recent-post .recent-post-meta {
	margin-top: -0.3em;
	margin-bottom: -0.3em
}

.recent-post .recent-post-meta a {
	text-transform: capitalize;
	font-size: 14px;
	color: var(--body-color);
	font-family: var(--body-font)
}

.recent-post .recent-post-meta a i {
	margin-right: 8px;
	color: var(--theme-color)
}

.recent-post .recent-post-meta a:hover {
	color: var(--theme-color)
}

.recent-post:hover .media-img img {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1)
}

.recent-post:hover .media-img:after {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1)
}

.sidebar-area {
	margin-bottom: 30px;
	border-radius: 30px;
	padding: 40px 40px 1px;
	background: var(--smoke-color)
}

.sidebar-area.sidebar-sticky {
	position: -webkit-sticky;
	position: sticky;
	top: 140px
}

@media (max-width: 991px) {
	.sidebar-area.sidebar-sticky {
		position: relative;
		top: auto
	}
}

.sidebar-area ul.wp-block-latest-posts {
	margin-bottom: 0
}

.sidebar-area ul.wp-block-latest-posts li:last-child {
	margin-bottom: 0
}

.sidebar-area select,
.sidebar-area input {
	border-radius: 50px;
	border: 1px solid var(--th-border-color)
}

.sidebar-area .sidebar-gallery {
	margin-bottom: 0 !important
}

.sidebar-area .widget .wp-block-search {
	margin-bottom: 0
}

.sidebar-area .wp-block-search__label,
.sidebar-area .wp-block-group__inner-container h2 {
	position: relative;
	font-size: 24px;
	font-weight: 700;
	font-family: var(--title-font);
	line-height: 1em;
	padding-bottom: 20px;
	margin: -0.12em 0 38px 0
}

.sidebar-area .wp-block-search__label:after,
.sidebar-area .wp-block-search__label:before,
.sidebar-area .wp-block-group__inner-container h2:after,
.sidebar-area .wp-block-group__inner-container h2:before {
	content: '';
	height: 3px;
	width: 100%;
	background-color: var(--th-border-color);
	position: absolute;
	bottom: 0;
	left: 0
}

.sidebar-area .wp-block-search__label:after,
.sidebar-area .wp-block-group__inner-container h2:after {
	background-color: var(--theme-color);
	width: 40px
}

.sidebar-area:has(.wp-block-group__inner-container h2) .wp-block-archives__label,
.sidebar-area:has(.wp-block-group__inner-container h2) .wp-block-categories__label,
.sidebar-area:has(.wp-block-group__inner-container h2) .wp-block-search__label {
	font-size: 20px;
	font-weight: 600;
	padding: 0;
	margin-bottom: 20px;
	border: 0
}

.sidebar-area:has(.wp-block-group__inner-container h2) .wp-block-archives__label:after,
.sidebar-area:has(.wp-block-group__inner-container h2) .wp-block-archives__label:before,
.sidebar-area:has(.wp-block-group__inner-container h2) .wp-block-categories__label:after,
.sidebar-area:has(.wp-block-group__inner-container h2) .wp-block-categories__label:before,
.sidebar-area:has(.wp-block-group__inner-container h2) .wp-block-search__label:after,
.sidebar-area:has(.wp-block-group__inner-container h2) .wp-block-search__label:before {
	display: none
}

.sidebar-area ol.wp-block-latest-comments {
	padding: 0;
	margin: 0
}

.sidebar-area ol.wp-block-latest-comments li {
	line-height: 1.5;
	margin: 0 0 20px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	padding-bottom: 20px
}

.sidebar-area ol.wp-block-latest-comments li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none
}

.download-widget-wrap {
	max-width: 190px
}

.download-widget-wrap .th-btn {
	width: 100%;
	padding-top: 0;
	padding-bottom: 0;
	background: #1C1C25;
	border: 1px solid var(--theme-color);
	height: 55px;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center
}

.download-widget-wrap .th-btn:after {
	background: #1C1C25
}

.download-widget-wrap .th-btn:first-child {
	margin-bottom: 10px
}

.widget_info {
	border: 1px solid var(--th-border-color);
	padding: 40px;
	border-radius: 30px
}

.widget_info .info-list {
	margin-top: 0;
	padding: 0
}

.widget_info .info-list li {
	background: var(--smoke-color);
	border-radius: 20px;
	border: 0;
	padding: 20px !important;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	gap: 15px
}

.widget_info .info-list li:not(:last-child) {
	margin-bottom: 24px
}

.widget_info .info-list li .box-icon {
	width: 56px;
	height: 56px;
	border-radius: 20px;
	box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
	background: var(--white-color);
	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: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 24px;
	color: var(--theme-color)
}

.widget_info .info-list li .box-title {
	font-size: 14px;
	font-weight: 600;
	font-family: var(--title-font);
	letter-spacing: 0.02em
}

.widget_info .info-list li .box-text {
	font-size: 18px;
	font-weight: 500;
	font-family: var(--title-font);
	color: var(--title-color);
	margin-bottom: -0.3em
}

.info-list {
	margin-top: -20px;
	padding: 48px 48px 48px
}

.info-list ul {
	list-style: none;
	padding: 0;
	margin: 0
}

.info-list strong {
	font-weight: 600;
	color: var(--title-color);
	display: block;
	font-size: 18px;
	position: relative;
	margin-bottom: 4px
}

.info-list strong:after {
	content: '';
	position: absolute;
	width: 2px;
	height: 13px;
	top: 6px;
	left: -10px;
	background: var(--theme-color)
}

.info-list li {
	border-bottom: 1px solid var(--th-border-color);
	padding: 16px 0;
	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;
	gap: 5px;
	padding-left: 10px
}

.info-list li:last-child {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0
}

.info-list li a {
	color: var(--body-color)
}

.info-list li .th-social {
	margin-top: 10px
}

@media (max-width: 1500px) {
	.info-list {
		padding: 38px 30px 38px
	}
}

.price_slider_wrapper {
	margin-top: -0.5em
}

.price_slider_wrapper .price_label span {
	display: inline-block;
	color: var(--title-color);
	font-family: var(--title-font)
}

.price_slider_wrapper .ui-slider {
	height: 6px;
	position: relative;
	width: 100%;
	background-color: var(--title-color);
	border: none;
	margin-top: 38px;
	margin-bottom: 23px;
	cursor: pointer;
	border-radius: 3px
}

.price_slider_wrapper .ui-slider-range {
	border: none;
	cursor: pointer;
	position: absolute;
	top: 0;
	height: 100%;
	z-index: 1;
	display: block;
	background-color: var(--theme-color)
}

.price_slider_wrapper .ui-slider-handle {
	width: 16px;
	height: 16px;
	line-height: 16px;
	border-radius: 50%;
	text-align: center;
	padding: 0;
	cursor: pointer;
	position: absolute;
	margin-top: -5px;
	z-index: 2;
	background-color: var(--white-color);
	border: 3px solid var(--theme-color);
	-webkit-transform: translateX(-1px);
	-ms-transform: translateX(-1px);
	transform: translateX(-1px)
}

.price_slider_wrapper .ui-slider-handle:focus {
	outline: none;
	box-shadow: 1.5px 2.598px 10px 0px rgba(0, 0, 0, 0.15)
}

.price_slider_wrapper .ui-slider-handle:last-child {
	-webkit-transform: translateX(-9px);
	-ms-transform: translateX(-9px);
	transform: translateX(-9px)
}

.price_slider_wrapper button,
.price_slider_wrapper .button {
	background-color: var(--theme-color);
	color: var(--white-color);
	font-weight: 500;
	line-height: 1.6;
	text-transform: capitalize;
	text-align: center;
	border: none;
	display: inline-block;
	overflow: hidden;
	position: relative;
	z-index: 2;
	padding: 7px 20px;
	min-width: 100px;
	font-size: 14px;
	border-radius: 30px;
	-webkit-transition: 0.4s ease-in;
	transition: 0.4s ease-in;
	margin-top: 22px
}

.price_slider_wrapper button:hover,
.price_slider_wrapper .button:hover {
	background-color: var(--title-color)
}

.widget_shopping_cart .widget_title {
	margin-bottom: 35px;
	border-bottom: none
}

.widget_shopping_cart ul {
	margin: 0;
	padding: 0
}

.widget_shopping_cart ul li {
	list-style-type: none
}

.widget_shopping_cart .mini_cart_item {
	position: relative;
	padding: 30px 30px 30px 90px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	margin-bottom: 0;
	text-align: left
}

.widget_shopping_cart .mini_cart_item:first-child {
	border-top: 1px solid rgba(0, 0, 0, 0.1)
}

.widget_shopping_cart .cart_list a:not(.remove) {
	display: block;
	color: var(--body-color);
	font-size: 16px;
	font-weight: 500;
	font-family: var(--title-font);
	font-weight: 600;
	color: var(--title-color)
}

.widget_shopping_cart .cart_list a:not(.remove):hover {
	color: var(--theme-color)
}

.widget_shopping_cart .cart_list a.remove {
	position: absolute;
	top: 50%;
	left: 95%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	color: var(--body-color)
}

.widget_shopping_cart .cart_list a.remove:hover {
	color: var(--theme-color)
}

.widget_shopping_cart .cart_list img {
	width: 75px;
	height: 75px;
	position: absolute;
	left: 0;
	top: 18px
}

.widget_shopping_cart .quantity {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	white-space: nowrap;
	vertical-align: top;
	margin-right: 20px;
	font-size: 14px;
	font-weight: 500
}

.widget_shopping_cart .total {
	margin-top: 20px;
	font-size: 18px;
	color: var(--title-color);
	font-family: var(--body-font)
}

.widget_shopping_cart .total strong {
	font-family: var(--title-font)
}

.widget_shopping_cart .amount {
	padding-left: 5px
}

.widget_shopping_cart .th-btn {
	margin-right: 15px
}

.widget_shopping_cart .th-btn:last-child {
	margin-right: 0
}

.widget_banner {
	border-radius: 30px;
	padding: 60px 30px;
	overflow: hidden
}

.widget_banner .logo {
	margin-bottom: 20px
}

.widget_banner .title {
	font-size: 60px;
	font-weight: 700;
	color: var(--white-color);
	margin-bottom: -0.26em;
	margin-top: -0.26em
}

.widget_banner .line {
	display: block;
	height: 72px;
	width: 2px;
	background: var(--white-color);
	margin: 20px auto;
	position: relative
}

.widget_banner .line:after,
.widget_banner .line:before {
	content: '';
	position: absolute;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--white-color);
	top: 0;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	transform: translate(-50%, 0)
}

.widget_banner .line:before {
	top: auto;
	bottom: 0
}

@media (max-width: 1299px) {
	.widget_banner .title {
		font-size: 50px
	}
}

@media (max-width: 1199px) {
	.widget_banner .title {
		font-size: 40px
	}
}

@media (max-width: 375px) {
	.widget_banner {
		padding: 40px 20px
	}
}

.th-video-widget .video-thumb {
	position: relative
}

.th-video-widget .play-btn {
	--icon-size: 60px;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

.th-video-widget .play-btn i {
	font-size: 16px
}

.th-video-widget .video-thumb-title {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4;
	margin-top: 10px;
	margin-bottom: -0.3em
}

.widget_recent_entries ul {
	margin: -0.3em 0 0 0;
	padding: 0;
	list-style: none
}

.widget_recent_entries ul li>a {
	color: var(--body-color);
	font-weight: 500;
	display: inline-block
}

.widget_recent_entries ul li>a:hover {
	color: var(--theme-color)
}

.widget_recent_entries ul li span.post-date {
	font-size: 14px
}

.widget_recent_entries ul li:not(:last-child) {
	border-bottom: 1px solid #dadada;
	padding-bottom: 12px;
	margin-bottom: 12px
}

.widget_recent_comments ul,
.wp-block-latest-comments ul {
	list-style-type: none;
	padding-left: 0
}

ul.widget_recent_comments,
ol.widget_recent_comments,
.wp-block-latest-comments {
	margin-top: -0.11em;
	padding-left: 0
}

.widget_recent_comments ol,
.widget_recent_comments ul,
.wp-block-latest-comments ol,
.wp-block-latest-comments ul {
	margin-bottom: 0
}

.widget_recent_comments li,
.wp-block-latest-comments li {
	margin-bottom: 0;
	color: var(--body-color);
	padding-left: 30px;
	position: relative
}

.widget_recent_comments li:before,
.wp-block-latest-comments li:before {
	content: "\f086";
	position: absolute;
	left: 0;
	top: -1px;
	color: var(--theme-color);
	font-family: "Font Awesome 6 Free";
}

.widget_recent_comments.has-avatars li,
.wp-block-latest-comments.has-avatars li {
	padding-left: 0;
	padding-bottom: 0 !important
}

.widget_recent_comments.has-avatars li:before,
.wp-block-latest-comments.has-avatars li:before {
	display: none
}

.widget_recent_comments .avatar,
.wp-block-latest-comments .avatar {
	margin-top: 0.4em
}

.widget_recent_comments li:not(:last-child),
.wp-block-latest-comments li:not(:last-child) {
	padding-bottom: 12px
}

.widget_recent_comments article,
.wp-block-latest-comments article {
	line-height: 1.5
}

.widget_recent_comments a,
.wp-block-latest-comments a {
	color: inherit
}

.widget_recent_comments a:hover,
.wp-block-latest-comments a:hover {
	color: var(--theme-color)
}

.wp-block-latest-comments__comment {
	line-height: 1.6
}

.wp-block-latest-comments__comment a {
	color: var(--body-color)
}

.wp-block-latest-comments__comment a:hover {
	color: var(--theme-color)
}

.wp-block-latest-comments__comment:last-child {
	margin-bottom: 0
}

.wp-block-calendar tbody td,
.wp-block-calendar th {
	padding: 10px
}

.wp-block-calendar,
.calendar_wrap {
	position: relative;
	background-color: #fff;
	padding-bottom: 0;
	border: none
}

.wp-block-calendar span[class*="wp-calendar-nav"],
.calendar_wrap span[class*="wp-calendar-nav"] {
	position: absolute;
	top: 9px;
	left: 20px;
	font-size: 14px;
	color: var(--white-color);
	font-weight: 400;
	z-index: 1;
	line-height: 1.7
}

.wp-block-calendar span[class*="wp-calendar-nav"] a,
.calendar_wrap span[class*="wp-calendar-nav"] a {
	color: inherit
}

.wp-block-calendar span.wp-calendar-nav-next,
.calendar_wrap span.wp-calendar-nav-next {
	left: auto;
	right: 20px
}

.wp-block-calendar caption,
.calendar_wrap caption {
	caption-side: top;
	text-align: center;
	color: var(--white-color);
	background-color: var(--theme-color)
}

.wp-block-calendar th,
.calendar_wrap th {
	font-size: 14px;
	padding: 5px 5px;
	border: none;
	text-align: center;
	border-right: 1px solid #fff;
	color: var(--title-color);
	font-weight: 500
}

.wp-block-calendar th:first-child,
.calendar_wrap th:first-child {
	border-left: 1px solid #eee
}

.wp-block-calendar th:last-child,
.calendar_wrap th:last-child {
	border-right: 1px solid #eee
}

.wp-block-calendar table th,
.calendar_wrap table th {
	font-weight: 500
}

.wp-block-calendar td,
.calendar_wrap td {
	font-size: 14px;
	padding: 5px 5px;
	color: #01133c;
	border: 1px solid #eee;
	text-align: center;
	background-color: transparent;
	-webkit-transition: all ease 0.4s;
	transition: all ease 0.4s
}

.wp-block-calendar #today,
.calendar_wrap #today {
	color: var(--theme-color);
	background-color: var(--white-color);
	border-color: #ededed
}

.wp-block-calendar thead,
.calendar_wrap thead {
	background-color: #fff
}

.wp-block-calendar .wp-calendar-table,
.calendar_wrap .wp-calendar-table {
	margin-bottom: 0
}

.wp-block-calendar .wp-calendar-nav .pad,
.calendar_wrap .wp-calendar-nav .pad {
	display: none
}

.wp-block-calendar a,
.calendar_wrap a {
	color: inherit;
	text-decoration: none
}

.wp-block-calendar a:hover,
.calendar_wrap a:hover {
	color: var(--title-color)
}

.wp-block-calendar {
	border: none;
	padding-bottom: 0
}

.wp-block-calendar table caption {
	color: var(--white-color)
}

ul.widget_rss,
ul.wp-block-rss,
ol.widget_rss,
ol.wp-block-rss {
	padding-left: 0
}

.widget_rss,
.wp-block-rss {
	list-style-type: none
}

.widget_rss ul,
.wp-block-rss ul {
	margin: -0.2em 0 -0.5em 0;
	padding: 0;
	list-style: none
}

.widget_rss ul .rsswidget,
.wp-block-rss ul .rsswidget {
	color: var(--title-color);
	font-family: var(--theme-font);
	font-size: 18px;
	display: block;
	margin-bottom: 10px
}

.widget_rss ul .rssSummary,
.wp-block-rss ul .rssSummary {
	font-size: 14px;
	margin-bottom: 7px;
	line-height: 1.5
}

.widget_rss ul a,
.wp-block-rss ul a {
	display: block;
	font-weight: 600;
	color: inherit
}

.widget_rss ul a:hover,
.wp-block-rss ul a:hover {
	color: var(--theme-color)
}

.widget_rss ul .rss-date,
.wp-block-rss ul .rss-date {
	font-size: 14px;
	display: inline-block;
	margin-bottom: 5px;
	font-weight: 400;
	color: var(--title-color)
}

.widget_rss ul .rss-date:before,
.wp-block-rss ul .rss-date:before {
	content: "\f073";
	font-family: "Font Awesome 6 Free";
	margin-right: 10px;
	font-weight: 300;
	color: var(--theme-color)
}

.widget_rss ul cite,
.wp-block-rss ul cite {
	font-weight: 500;
	color: var(--title-color);
	font-family: var(--body-font);
	font-size: 14px
}

.widget_rss ul cite:before,
.wp-block-rss ul cite:before {
	content: "";
	position: relative;
	top: -1px;
	left: 0;
	width: 20px;
	height: 2px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 8px;
	background-color: var(--theme-color)
}

.widget_rss li:not(:last-child),
.wp-block-rss li:not(:last-child) {
	margin-bottom: 16px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	padding-bottom: 16px
}

.widget_rss a:hover,
.wp-block-rss a:hover {
	color: var(--theme-color)
}

.textwidget {
	margin-top: -0.1em
}

.sidebar-area .widget_shopping_cart .th-btn {
	margin-right: 10px;
	padding: 8px 22px;
	font-size: 14px
}

.widget:has(.author-widget-wrap) {
	padding: 0;
	overflow: hidden
}

.author-widget-wrap {
	text-align: center;
	position: relative;
	padding: var(--widget-padding-y, 40px) var(--widget-padding-x, 40px)
}

.author-widget-wrap .author-tag {
	background: var(--theme-color);
	position: absolute;
	left: 120px;
	top: -40px;
	font-size: 24px;
	font-weight: 800;
	color: var(--white-color);
	-webkit-transform: rotate(-45deg) translate(-100%, 0);
	-ms-transform: rotate(-45deg) translate(-100%, 0);
	transform: rotate(-45deg) translate(-100%, 0);
	-webkit-transform-origin: top left;
	-ms-transform-origin: top left;
	transform-origin: top left;
	padding: 15px 57px
}

.author-widget-wrap .avater {
	display: inline-block
}

.author-widget-wrap .avater img {
	border-radius: 50%;
	width: 120px;
	height: 120px
}

.author-widget-wrap .name {
	font-size: 30px;
	font-weight: 700;
	margin-top: 22px;
	margin-bottom: 10px
}

.author-widget-wrap .meta {
	display: block;
	margin-bottom: 4px
}

.author-widget-wrap .meta a {
	color: var(--body-color)
}

.author-widget-wrap .meta a:hover {
	color: var(--theme-color)
}

.author-widget-wrap .meta:last-child {
	margin-bottom: -0.3em
}

.author-widget-wrap .meta i {
	color: var(--theme-color2);
	margin-right: 6px
}

@media (max-width: 1199px) {
	.author-widget-wrap .name {
		font-size: 22px
	}

	.author-widget-wrap .author-tag {
		font-size: 18px;
		left: 100px
	}
}

.widget_schedule {
	background: var(--smoke-color);
	border-radius: 8px;
	border: 0
}

.widget_schedule .widget_title {
	padding-bottom: 0;
	border-bottom: 0;
	margin-bottom: 20px
}

.widget_schedule .widget_title:after {
	display: none
}

.widget_schedule .checklist {
	margin-top: 38px;
	margin-bottom: 20px
}

.widget_schedule .th-btn {
	margin-top: 27px
}

.widget_banner2 .widget-banner {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
	padding: 24px 0
}

.widget_banner2 .widget-banner .icon-btn {
	--btn-size: 64px;
	background: var(--theme-color)
}

.widget_banner2 .widget-banner .box-title {
	font-size: 18px;
	font-weight: 500;
	color: var(--white-color);
	margin-bottom: 10px
}

.widget_banner2 .widget-banner .box-link {
	font-size: 28px;
	font-weight: 600;
	color: var(--white-color);
	margin-bottom: -0.1em;
	display: block
}

@media (max-width: 375px) {
	.widget_banner2 .widget-banner {
		display: block;
		padding: 10px 0
	}

	.widget_banner2 .widget-banner .icon-btn {
		margin-bottom: 20px
	}
}

.widget_team_info {
	border: 0;
	padding: 0 !important;
	border-radius: 16px;
	overflow: hidden;
	background: var(--smoke-color)
}

.widget_team_info .widget-thumb img {
	width: 100%
}

.widget_team_info .widget-info-wrap {
	background: var(--title-color);
	border-radius: 3px;
	padding: 25px 48px
}

.widget_team_info .widget-info-wrap .box-title {
	color: var(--white-color);
	font-size: 28px;
	font-weight: 600;
	margin-bottom: -0.1em
}

.widget_team_info .widget-info-wrap .box-text {
	color: var(--white-color);
	font-size: 18px;
	font-weight: 400
}

.widget-contact-wrap {
	background: var(--theme-color);
	border-radius: 30px;
	padding: 40px
}

.widget-contact-wrap .widget_title {
	color: var(--white-color);
	margin-bottom: 10px
}

.widget-contact-wrap .box-text {
	color: var(--white-color);
	margin-bottom: 20px
}

.widget-contact-wrap .info-box {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	gap: 14px
}

.widget-contact-wrap .info-box:not(:last-child) {
	margin-bottom: 20px
}

.widget-contact-wrap .info-box .info-box_icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	-webkit-box-flex: 0;
	-webkit-flex: none;
	-ms-flex: none;
	flex: none;
	border: 1px solid var(--white-color);
	color: var(--white-color);
	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: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center
}

.widget-contact-wrap .info-box .info-box_title {
	color: var(--white-color);
	font-size: 14px;
	font-weight: 500;
	font-family: var(--title-font);
	letter-spacing: 0.02em;
	margin-bottom: 0;
	margin-top: -0.2em
}

.widget-contact-wrap .info-box .info-box_text {
	font-size: 20px;
	font-weight: 500;
	font-family: var(--title-font);
	margin-bottom: -0.4em
}

.widget-contact-wrap .info-box .info-box_text .info-box_link {
	color: var(--white-color)
}

@media (max-width: 575px) {
	.widget-contact-wrap {
		padding: 30px
	}
}

.widget-contact-form {
	background: var(--smoke-color);
	border-radius: 30px;
	padding: 40px
}

@media (max-width: 575px) {
	.widget-contact-form {
		padding: 30px
	}
}

@media (min-width: 992px) {
	.sidebar-shop .widget {
		margin-bottom: 24px
	}
}

@media (max-width: 1199px) {
	.widget_title {
		font-size: 22px;
		margin: -0.12em 0 28px 0
	}
}

@media (max-width: 991px) {
	.sidebar-area {
		margin-top: 30px
	}
}

@media (max-width: 575px) {
	.sidebar-area {
		border-radius: 20px;
		padding: 30px 30px 1px
	}
}

@media (max-width: 375px) {
	.recent-post .post-title {
		font-size: 16px;
		line-height: 24px
	}

	.recent-post .recent-post-meta a {
		font-size: 12px
	}
}

@media (max-width: 330px) {
	.recent-post .media-img {
		margin-right: 15px
	}

	.recent-post .post-title {
		font-size: 14px;
		line-height: 24px
	}
}

.footer-widget {
	margin-bottom: 50px
}

.footer-widget,
.footer-widget .widget {
	padding: 0;
	border: none;
	padding-bottom: 0;
	background-color: transparent;
	box-shadow: none
}

.footer-widget .form-group>i {
	color: var(--theme-color);
	top: 18px
}

.footer-widget select {
	background-color: transparent;
	border: 1px solid var(--th-border-color);
	-webkit-filter: brightness(9);
	filter: brightness(9)
}

.footer-widget .search-form input {
	background: transparent
}

.footer-widget .widget_title {
	position: relative;
	border: none;
	font-family: var(--title-font);
	color: var(--white-color);
	line-height: 1;
	border-bottom: 0;
	padding: 0 0 18px 0;
	margin: -0.1em 0 40px 0
}

.footer-widget .widget_title:before,
.footer-widget .widget_title:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 40px;
	height: 2px;
	background: -webkit-linear-gradient(332.19deg, var(--theme-color) 13.95%, var(--theme-color2) 77.47%);
	background: linear-gradient(117.81deg, var(--theme-color) 13.95%, var(--theme-color2) 77.47%)
}

.footer-widget .widget_title:after {
	width: 10px;
	left: 43px;
	border-right: 10px solid linear-gradient(117.81deg, var(--theme-color) 13.95%, var(--theme-color2) 77.47%);
	box-shadow: 13px 0 0 0 var(--theme-color2)
}

.footer-widget .widget_title img {
	margin: -7px 10px 0 0
}

.footer-widget.widget_meta ul,
.footer-widget.widget_pages ul,
.footer-widget.widget_archive ul,
.footer-widget.widget_categories ul,
.footer-widget.widget_nav_menu ul {
	margin-top: -4px
}

.footer-widget.widget_meta .menu,
.footer-widget.widget_meta>ul,
.footer-widget.widget_pages .menu,
.footer-widget.widget_pages>ul,
.footer-widget.widget_archive .menu,
.footer-widget.widget_archive>ul,
.footer-widget.widget_categories .menu,
.footer-widget.widget_categories>ul,
.footer-widget.widget_nav_menu .menu,
.footer-widget.widget_nav_menu>ul {
	margin-bottom: -4px
}

.footer-widget.widget_meta a,
.footer-widget.widget_pages a,
.footer-widget.widget_archive a,
.footer-widget.widget_categories a,
.footer-widget.widget_nav_menu a {
	font-size: 16px;
	font-weight: 400;
	padding: 0;
	margin-bottom: 18px;
	font-family: var(--body-font);
	display: block;
	max-width: 100%;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	padding-right: 0;
	background-color: transparent;
	border: none;
	position: relative;
	box-shadow: none;
	color: var(--body-color)
}

.footer-widget.widget_meta a:before,
.footer-widget.widget_pages a:before,
.footer-widget.widget_archive a:before,
.footer-widget.widget_categories a:before,
.footer-widget.widget_nav_menu a:before {
	display: none
}

.footer-widget.widget_meta a:after,
.footer-widget.widget_pages a:after,
.footer-widget.widget_archive a:after,
.footer-widget.widget_categories a:after,
.footer-widget.widget_nav_menu a:after {
	display: none
}

.footer-widget.widget_meta a:hover,
.footer-widget.widget_pages a:hover,
.footer-widget.widget_archive a:hover,
.footer-widget.widget_categories a:hover,
.footer-widget.widget_nav_menu a:hover {
	background-color: transparent;
	color: var(--white-color)
}

.footer-widget.widget_meta a:hover:before,
.footer-widget.widget_pages a:hover:before,
.footer-widget.widget_archive a:hover:before,
.footer-widget.widget_categories a:hover:before,
.footer-widget.widget_nav_menu a:hover:before {
	color: var(--theme-color);
	left: 2px
}

.footer-widget.widget_meta li,
.footer-widget.widget_pages li,
.footer-widget.widget_archive li,
.footer-widget.widget_categories li,
.footer-widget.widget_nav_menu li {
	border: 0;
	padding-bottom: 0;
	margin-bottom: 0
}

.footer-widget.widget_meta li>span,
.footer-widget.widget_pages li>span,
.footer-widget.widget_archive li>span,
.footer-widget.widget_categories li>span,
.footer-widget.widget_nav_menu li>span {
	width: auto;
	height: auto;
	background-color: transparent;
	color: var(--body-color);
	line-height: 1;
	top: 2px
}

.footer-widget .recent-post {
	max-width: 300px;
	margin-bottom: 20px
}

.footer-widget .recent-post .media-img {
	max-width: 80px
}

.footer-widget .recent-post .media-img:after {
	line-height: 74px
}

.footer-widget .recent-post .post-title {
	color: var(--white-color)
}

.footer-widget .recent-post:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: 0
}

.footer-widget .recent-post .recent-post-meta {
	margin-top: -0.4em
}

.footer-widget .recent-post .recent-post-meta a {
	font-weight: 400;
	line-height: 1.2
}

.footer-widget .recent-post .recent-post-meta i {
	color: var(--theme-color)
}

.footer-widget .recent-post .recent-post-meta a:hover i {
	color: var(--theme-color)
}

.footer-widget.widget_rss ul .rsswidget,
.footer-widget.wp-block-rss ul .rsswidget {
	color: var(--white-color)
}

.footer-widget.widget_rss ul .rsswidget:hover,
.footer-widget.wp-block-rss ul .rsswidget:hover {
	color: var(--theme-color)
}

.footer-widget.widget_rss ul .rss-date,
.footer-widget.wp-block-rss ul .rss-date {
	color: var(--white-color)
}

.footer-widget.widget_rss ul .rssSummary,
.footer-widget.wp-block-rss ul .rssSummary {
	color: var(--body-color)
}

.footer-widget.widget_rss ul cite,
.footer-widget.wp-block-rss ul cite {
	color: var(--theme-color)
}

.about-logo {
	margin-bottom: 15px
}

.th-widget-about {
	max-width: 283px
}

.th-widget-about .about-logo {
	margin-bottom: 30px
}

.th-widget-about .about-text {
	margin-bottom: 35px;
	margin-top: -0.5em
}

.th-newsletter-widget {
	max-width: 442px
}

.th-newsletter-widget .widget_title {
	font-size: 30px;
	padding-bottom: 0;
	margin-bottom: 20px
}

.th-newsletter-widget .widget_title:before {
	display: none
}

@media (max-width: 991px) {
	.th-newsletter-widget .widget_title {
		font-size: 24px
	}
}

.th-newsletter-widget .newsletter-form {
	margin-top: 32px;
	position: relative;
	display: block
}

.th-newsletter-widget .newsletter-form .form-group input {
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
	font-size: 14px;
	height: 56px;
	padding: 0 30px;
	border: 0;
	border-radius: 50px;
	background: var(--gray-color);
	padding-right: 145px
}

.th-newsletter-widget .newsletter-form .form-group input::-webkit-input-placeholder {
	color: var(--body-color)
}

.th-newsletter-widget .newsletter-form .form-group input::-moz-placeholder {
	color: var(--body-color)
}

.th-newsletter-widget .newsletter-form .form-group input:-ms-input-placeholder {
	color: var(--body-color)
}

.th-newsletter-widget .newsletter-form .form-group input::-ms-input-placeholder {
	color: var(--body-color)
}

.th-newsletter-widget .newsletter-form .form-group input::placeholder {
	color: var(--body-color)
}

.th-newsletter-widget .newsletter-form .form-group:after {
	display: none
}

.th-newsletter-widget .newsletter-form .th-btn {
	font-size: 14px;
	font-weight: 500;
	padding: 12px 27px;
	position: absolute;
	right: 8px;
	top: 9px
}

.th-newsletter-widget .form-group {
	margin-bottom: 0
}

.th-newsletter-widget .check-group {
	margin-bottom: 20px
}

.th-newsletter-widget.style2 .newsletter-form .th-btn {
	border-radius: 30px
}

.th-newsletter-widget.style3 .newsletter-form .form-group input {
	border-radius: 0px
}

.th-widget-instagram .instagram-feeds {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	max-width: 312px
}

.th-widget-instagram .insta-thumb {
	overflow: hidden;
	position: relative;
	border-radius: 16px
}

.th-widget-instagram .insta-thumb:before {
	content: '';
	height: calc(100% - 14px);
	width: calc(100% - 14px);
	background-color: var(--title-color);
	opacity: 0.8;
	position: absolute;
	top: 7px;
	left: 7px;
	-webkit-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	border-radius: inherit;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.th-widget-instagram .insta-thumb .insta-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	color: var(--white-color);
	visibility: hidden;
	opacity: 0;
	-webkit-transform: translate(-50%, 20px);
	-ms-transform: translate(-50%, 20px);
	transform: translate(-50%, 20px);
	background: transparent
}

.th-widget-instagram .insta-thumb .insta-btn:hover {
	color: var(--theme-color)
}

.th-widget-instagram .insta-thumb:hover:before {
	-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1)
}

.th-widget-instagram .insta-thumb:hover .insta-btn {
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 1;
	visibility: visible
}

.footer-text {
	margin-top: -0.5em;
	margin-bottom: 25px
}

.social-box {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center
}

.social-box .social-title {
	font-size: 20px;
	color: var(--white-color);
	font-weight: 600;
	margin-right: 20px;
	margin-bottom: 0
}

.icon-group a {
	color: var(--white-color);
	font-size: 18px;
	margin-right: 17px
}

.icon-group a:last-child {
	margin-right: 0
}

@media (max-width: 1199px) {

	.footer-widget.widget_meta a,
	.footer-widget.widget_pages a,
	.footer-widget.widget_archive a,
	.footer-widget.widget_categories a,
	.footer-widget.widget_nav_menu a {
		margin-bottom: 16px
	}
}

@media (max-width: 767px) {
	.footer-widget .widget_title {
		margin-bottom: 35px
	}

	.th-widget-about .about-text {
		margin-bottom: 20px
	}

	.social-box.mb-30 {
		margin-bottom: 25px
	}
}

[data-cue="fadeIn"],
[data-cues="fadeIn"]>* {
	opacity: 0
}

@-webkit-keyframes fadeIn {
	from {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

@keyframes fadeIn {
	from {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

[data-cue="slideInLeft"],
[data-cues="slideInLeft"]>* {
	opacity: 0
}

@-webkit-keyframes slideInLeft {
	from {
		opacity: 0;
		-webkit-transform: translateX(-60px);
		transform: translateX(-60px)
	}

	to {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		-webkit-transform: translateX(-60px);
		transform: translateX(-60px)
	}

	to {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

[data-cue="slideInRight"],
[data-cues="slideInRight"]>* {
	opacity: 0
}

@-webkit-keyframes slideInRight {
	from {
		opacity: 0;
		-webkit-transform: translateX(60px);
		transform: translateX(60px)
	}

	to {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		-webkit-transform: translateX(60px);
		transform: translateX(60px)
	}

	to {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

[data-cue="slideInDown"],
[data-cues="slideInDown"]>* {
	opacity: 0
}

@-webkit-keyframes slideInDown {
	from {
		opacity: 0;
		-webkit-transform: translateY(-60px);
		transform: translateY(-60px)
	}

	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@keyframes slideInDown {
	from {
		opacity: 0;
		-webkit-transform: translateY(-60px);
		transform: translateY(-60px)
	}

	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

[data-cue="slideInUp"],
[data-cues="slideInUp"]>* {
	opacity: 0
}

@-webkit-keyframes slideInUp {
	from {
		opacity: 0;
		-webkit-transform: translateY(60px);
		transform: translateY(60px)
	}

	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@keyframes slideInUp {
	from {
		opacity: 0;
		-webkit-transform: translateY(60px);
		transform: translateY(60px)
	}

	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

[data-cue="zoomIn"],
[data-cues="zoomIn"]>* {
	opacity: 0
}

@-webkit-keyframes zoomIn {
	from {
		opacity: 0;
		-webkit-transform: scale(.8);
		transform: scale(.8)
	}

	to {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1)
	}
}

@keyframes zoomIn {
	from {
		opacity: 0;
		-webkit-transform: scale(.8);
		transform: scale(.8)
	}

	to {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1)
	}
}

[data-cue="zoomOut"],
[data-cues="zoomOut"]>* {
	opacity: 0
}

@-webkit-keyframes zoomOut {
	from {
		opacity: 0;
		-webkit-transform: scale(1.2);
		transform: scale(1.2)
	}

	to {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1)
	}
}

@keyframes zoomOut {
	from {
		opacity: 0;
		-webkit-transform: scale(1.2);
		transform: scale(1.2)
	}

	to {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1)
	}
}

[data-cue="rotateIn"],
[data-cues="rotateIn"]>* {
	opacity: 0
}

@-webkit-keyframes rotateIn {
	from {
		opacity: 0;
		-webkit-transform: rotateZ(-15deg);
		transform: rotateZ(-15deg)
	}

	to {
		opacity: 1;
		-webkit-transform: rotateZ(0deg);
		transform: rotateZ(0deg)
	}
}

@keyframes rotateIn {
	from {
		opacity: 0;
		-webkit-transform: rotateZ(-15deg);
		transform: rotateZ(-15deg)
	}

	to {
		opacity: 1;
		-webkit-transform: rotateZ(0deg);
		transform: rotateZ(0deg)
	}
}

[data-cue="bounceIn"],
[data-cues="bounceIn"]>* {
	opacity: 0
}

@-webkit-keyframes bounceIn {
	0% {
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3)
	}

	20% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1)
	}

	40% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9);
		transform: scale3d(0.9, 0.9, 0.9)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(1.03, 1.03, 1.03);
		transform: scale3d(1.03, 1.03, 1.03)
	}

	80% {
		-webkit-transform: scale3d(0.97, 0.97, 0.97);
		transform: scale3d(0.97, 0.97, 0.97)
	}

	100% {
		opacity: 1;
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
}

@keyframes bounceIn {
	0% {
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3)
	}

	20% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1)
	}

	40% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9);
		transform: scale3d(0.9, 0.9, 0.9)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(1.03, 1.03, 1.03);
		transform: scale3d(1.03, 1.03, 1.03)
	}

	80% {
		-webkit-transform: scale3d(0.97, 0.97, 0.97);
		transform: scale3d(0.97, 0.97, 0.97)
	}

	100% {
		opacity: 1;
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
}

[data-cue="bounceInLeft"],
[data-cues="bounceInLeft"]>* {
	opacity: 0
}

@-webkit-keyframes bounceInLeft {

	from,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(-3000px, 0, 0);
		transform: translate3d(-3000px, 0, 0)
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(25px, 0, 0);
		transform: translate3d(25px, 0, 0)
	}

	75% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0)
	}

	90% {
		-webkit-transform: translate3d(5px, 0, 0);
		transform: translate3d(5px, 0, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@keyframes bounceInLeft {

	from,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(-3000px, 0, 0);
		transform: translate3d(-3000px, 0, 0)
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(25px, 0, 0);
		transform: translate3d(25px, 0, 0)
	}

	75% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0)
	}

	90% {
		-webkit-transform: translate3d(5px, 0, 0);
		transform: translate3d(5px, 0, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

[data-cue="bounceInRight"],
[data-cues="bounceInRight"]>* {
	opacity: 0
}

@-webkit-keyframes bounceInRight {

	from,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
	}

	from {
		opacity: 0;
		-webkit-transform: translate3d(3000px, 0, 0);
		transform: translate3d(3000px, 0, 0)
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(-25px, 0, 0);
		transform: translate3d(-25px, 0, 0)
	}

	75% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0)
	}

	90% {
		-webkit-transform: translate3d(-5px, 0, 0);
		transform: translate3d(-5px, 0, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@keyframes bounceInRight {

	from,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
	}

	from {
		opacity: 0;
		-webkit-transform: translate3d(3000px, 0, 0);
		transform: translate3d(3000px, 0, 0)
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(-25px, 0, 0);
		transform: translate3d(-25px, 0, 0)
	}

	75% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0)
	}

	90% {
		-webkit-transform: translate3d(-5px, 0, 0);
		transform: translate3d(-5px, 0, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

[data-cue="bounceInDown"],
[data-cues="bounceInDown"]>* {
	opacity: 0
}

@-webkit-keyframes bounceInDown {

	from,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -3000px, 0);
		transform: translate3d(0, -3000px, 0)
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, 25px, 0);
		transform: translate3d(0, 25px, 0)
	}

	75% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0)
	}

	90% {
		-webkit-transform: translate3d(0, 5px, 0);
		transform: translate3d(0, 5px, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@keyframes bounceInDown {

	from,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -3000px, 0);
		transform: translate3d(0, -3000px, 0)
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, 25px, 0);
		transform: translate3d(0, 25px, 0)
	}

	75% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0)
	}

	90% {
		-webkit-transform: translate3d(0, 5px, 0);
		transform: translate3d(0, 5px, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

[data-cue="bounceInUp"],
[data-cues="bounceInUp"]>* {
	opacity: 0
}

@-webkit-keyframes bounceInUp {

	from,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
	}

	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 3000px, 0);
		transform: translate3d(0, 3000px, 0)
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0)
	}

	75% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0)
	}

	90% {
		-webkit-transform: translate3d(0, -5px, 0);
		transform: translate3d(0, -5px, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@keyframes bounceInUp {

	from,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
	}

	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 3000px, 0);
		transform: translate3d(0, 3000px, 0)
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0)
	}

	75% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0)
	}

	90% {
		-webkit-transform: translate3d(0, -5px, 0);
		transform: translate3d(0, -5px, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

[data-cue="flipInX"],
[data-cues="flipInX"]>* {
	opacity: 0;
	-webkit-backface-visibility: visible;
	backface-visibility: visible
}

@-webkit-keyframes flipInX {
	from {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0
	}

	40% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

	60% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		opacity: 1
	}

	80% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
	}

	to {
		opacity: 1;
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}
}

@keyframes flipInX {
	from {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0
	}

	40% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

	60% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		opacity: 1
	}

	80% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
	}

	to {
		opacity: 1;
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}
}

[data-cue="flipInY"],
[data-cues="flipInY"]>* {
	opacity: 0;
	-webkit-backface-visibility: visible;
	backface-visibility: visible
}

@-webkit-keyframes flipInY {
	from {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0
	}

	40% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

	60% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		opacity: 1
	}

	80% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
	}

	to {
		opacity: 1;
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}
}

@keyframes flipInY {
	from {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0
	}

	40% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

	60% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		opacity: 1
	}

	80% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
	}

	to {
		opacity: 1;
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}
}

.main-menu a {
	display: block;
	position: relative;
	font-weight: 700;
	font-size: 15px;
	font-family: var(--title-font);
	color: var(--title-color);
}

.main-menu a:hover {
	color: var(--theme-color)
}

.main-menu>ul>li {
	margin: 0 12px;
}

.main-menu>ul>li>a {
	padding: 20px 0px 20px 0px;
	text-decoration: none;
}

.main-menu>ul>li>a:hover {
	color: var(--theme-color)
}

.main-menu ul {
	margin: 0;
	padding: 0
}

.main-menu ul li {
	list-style-type: none;
	display: inline-block;
	position: relative
}

.main-menu ul li.menu-item-has-children>a::after,
.main-menu ul li.has-submenu>a::after,
.main-menu ul li.has-megamenu>a::after {
	content: "\f107";
	display: inline-block;
	position: relative;
	font-family: "Font Awesome 6 Free";
	margin-left: 5px;
	font-weight: 600;
	top: 0;
	font-size: 15px;
	color: var(--title-color);
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

.main-menu ul li:has(.sub-menu)>a:hover:after,
.main-menu ul li:has(.mega-menu)>a:hover:after,
.main-menu ul li.menu-item-has-children>a:hover:after {
	content: "\f106";
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
	color: var(--theme-color)
}

.main-menu ul li:last-child {
	margin-right: 0 !important
}

.main-menu ul li:first-child {
	margin-left: 0 !important
}

.main-menu ul li:hover>ul.sub-menu {
	visibility: visible;
	opacity: 1;
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1);
	z-index: 9
}

.main-menu ul li:hover ul.mega-menu {
	visibility: visible;
	opacity: 1;
	-webkit-transform: scaleY(1) translateX(0%);
	-ms-transform: scaleY(1) translateX(0%);
	transform: scaleY(1) translateX(0%);
	z-index: 9;
	border-bottom: 3px solid var(--theme-color)
}

.main-menu ul.sub-menu {
	position: absolute;
	text-align: left;
	top: 100%;
	left: 0;
	background-color: var(--white-color);
	visibility: hidden;
	min-width: 230px;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	padding: 7px;
	left: -14px;
	opacity: 0;
	z-index: -1;
	box-shadow: 0px 4px 15px rgba(1, 15, 28, 0.06);
	border-radius: 0px;
	-webkit-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: top center;
	-ms-transform-origin: top center;
	transform-origin: top center;
	-webkit-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	/* border-bottom: 3px solid var(--theme-color) */
}

.main-menu ul.sub-menu {
	padding: 15px 15px 15px 8px;
	left: -27px;
}

.main-menu ul.sub-menu li {
	display: block;
	margin: 0 0;
	padding: 3px 9px;
}

@media (max-width: 1500px) {
	.main-menu>ul>li {
		margin: 0 12px;
	}
}

.main-menu ul.sub-menu li:has(.sub-menu)>a:after,
.main-menu ul.sub-menu li:has(.mega-menu)>a:after,
.main-menu ul.sub-menu li.menu-item-has-children>a:after {
	content: "\f105";
	float: right;
	top: 1px;
	display: inline-block
}

.main-menu ul.sub-menu li:has(.sub-menu)>a:hover:after,
.main-menu ul.sub-menu li:has(.mega-menu)>a:hover:after,
.main-menu ul.sub-menu li.menu-item-has-children>a:hover:after {
	content: "\f105";
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg)
}

.main-menu ul.sub-menu li a {
	position: relative;
	padding-left: 0;
	text-transform: uppercase;
	font-size: 14px;
	line-height: 30px;
}

.main-menu ul.sub-menu li a:hover {
	padding-left: 23px
}

.main-menu ul.sub-menu li a:hover:before {
	visibility: visible;
	opacity: 1;
	left: 0
}


.th-hero-wrapper {
	position: relative;
	z-index: 2;
	overflow: hidden;
	/* background: #f8f8f8; */
	/* background: linear-gradient(90deg, rgb(255, 255, 255) 0%, #edf2a4 46%, rgb(255, 255, 255) 100%); */
}

.th-hero-bg {
	position: absolute;
	inset: 0;
	z-index: -1
}

.th-hero-bg img {
	height: 100%;
	width: 100%;
	object-fit: cover
}

.hero-title {
	line-height: 1.222;
	margin-bottom: 20px;
	margin-top: -0.25em
}

.hero-title span {
	display: block
}

.hero-title span .text-theme {
	display: inline-block
}

.hero-text {
	margin-bottom: 32px;
	font-size: 16px
}

.hero-1 {
	position: relative
}

.hero-1:after,
.hero-1:before {
	content: '';
	position: absolute;
	inset: 0
}

.hero-1:after {
	background: var(--black-color);
	opacity: 0.3;
	mix-blend-mode: soft-light
}

@media (max-width: 1199px) {
	.hero-1:after {
		opacity: 0.7
	}
}

.hero-1:before {
	background: var(--theme-color);
	mix-blend-mode: hue
}

.hero-1 .scroll-down {
	position: absolute;
	left: 50%;
	bottom: 80px;
	-webkit-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	z-index: 7;
	margin-bottom: 50px
}

.hero-1 .scroll-down .hero-scroll-wrap {
	display: inline-block;
	width: 30px
}

.hero-1 .scroll-down .hero-scroll-wrap:after {
	content: "";
	position: absolute;
	height: 50px;
	width: 30px;
	border: 2px solid var(--white-color);
	border-radius: 30px
}

.hero-1 .scroll-down .hero-scroll-wrap:before {
	content: "";
	height: 8px;
	width: 8px;
	border-radius: 50px;
	background-color: var(--white-color);
	position: absolute;
	bottom: 0;
	left: 50%;
	margin: -20px -4px;
	-webkit-animation: scrollMove 1.5s infinite;
	animation: scrollMove 1.5s infinite
}




.px-5 {
	padding-right: 5px;
	padding-left: 5px
}

.px-10 {
	padding-right: 10px;
	padding-left: 10px
}

.px-15 {
	padding-right: 15px;
	padding-left: 15px
}

.px-20 {
	padding-right: 20px;
	padding-left: 20px
}

.px-25 {
	padding-right: 25px;
	padding-left: 25px
}

.px-30 {
	padding-right: 30px;
	padding-left: 30px
}

.px-35 {
	padding-right: 35px;
	padding-left: 35px
}

.px-40 {
	padding-right: 40px;
	padding-left: 40px
}

.px-45 {
	padding-right: 45px;
	padding-left: 45px
}

.px-50 {
	padding-right: 50px;
	padding-left: 50px
}

.py-5 {
	padding-top: 5px;
	padding-bottom: 5px
}

.py-10 {
	padding-top: 10px;
	padding-bottom: 10px
}

.py-15 {
	padding-top: 15px;
	padding-bottom: 15px
}

.py-20 {
	padding-top: 20px;
	padding-bottom: 20px
}

.py-25 {
	padding-top: 25px;
	padding-bottom: 25px
}

.py-30 {
	padding-top: 30px;
	padding-bottom: 30px
}

.py-35 {
	padding-top: 35px;
	padding-bottom: 35px
}

.py-40 {
	padding-top: 40px;
	padding-bottom: 40px
}

.py-45 {
	padding-top: 45px;
	padding-bottom: 45px
}

.py-50 {
	padding-top: 50px;
	padding-bottom: 50px
}

.pt-5 {
	padding-top: 5px
}

.pt-10 {
	padding-top: 10px
}

.pt-15 {
	padding-top: 15px
}

.pt-20 {
	padding-top: 20px
}

.pt-25 {
	padding-top: 25px
}

.pt-30 {
	padding-top: 30px
}

.pt-35 {
	padding-top: 35px
}

.pt-40 {
	padding-top: 40px
}

.pt-45 {
	padding-top: 45px
}

.pt-50 {
	padding-top: 50px
}

.pb-5 {
	padding-bottom: 5px
}

.pb-10 {
	padding-bottom: 10px
}

.pb-15 {
	padding-bottom: 15px
}

.pb-20 {
	padding-bottom: 20px
}

.pb-25 {
	padding-bottom: 25px
}

.pb-30 {
	padding-bottom: 30px
}

.pb-35 {
	padding-bottom: 35px
}

.pb-40 {
	padding-bottom: 40px
}

.pb-45 {
	padding-bottom: 45px
}

.pb-50 {
	padding-bottom: 50px
}

.pl-5 {
	padding-left: 5px
}

.pl-10 {
	padding-left: 10px
}

.pl-15 {
	padding-left: 15px
}

.pl-20 {
	padding-left: 20px
}

.pl-25 {
	padding-left: 25px
}

.pl-30 {
	padding-left: 30px
}

.pl-35 {
	padding-left: 35px
}

.pl-40 {
	padding-left: 40px
}

.pl-45 {
	padding-left: 45px
}

.pl-50 {
	padding-left: 50px
}

.pr-5 {
	padding-right: 5px
}

.pr-10 {
	padding-right: 10px
}

.pr-15 {
	padding-right: 15px
}

.pr-20 {
	padding-right: 20px
}

.pr-25 {
	padding-right: 25px
}

.pr-30 {
	padding-right: 30px
}

.pr-35 {
	padding-right: 35px
}

.pr-40 {
	padding-right: 40px
}

.pr-45 {
	padding-right: 45px
}

.pr-50 {
	padding-right: 50px
}

.pb-60 {
	padding-bottom: 60px
}

.pt-60 {
	padding-top: 60px
}

.pb-80 {
	padding-bottom: 80px
}

.pt-80 {
	padding-top: 80px
}

.mx-5 {
	margin-right: 5px;
	margin-left: 5px
}

.mx-10 {
	margin-right: 10px;
	margin-left: 10px
}

.mx-15 {
	margin-right: 15px;
	margin-left: 15px
}

.mx-20 {
	margin-right: 20px;
	margin-left: 20px
}

.mx-25 {
	margin-right: 25px;
	margin-left: 25px
}

.mx-30 {
	margin-right: 30px;
	margin-left: 30px
}

.mx-35 {
	margin-right: 35px;
	margin-left: 35px
}

.mx-40 {
	margin-right: 40px;
	margin-left: 40px
}

.mx-45 {
	margin-right: 45px;
	margin-left: 45px
}

.mx-50 {
	margin-right: 50px;
	margin-left: 50px
}

.my-5 {
	margin-top: 5px;
	margin-bottom: 5px
}

.my-10 {
	margin-top: 10px;
	margin-bottom: 10px
}

.my-15 {
	margin-top: 15px;
	margin-bottom: 15px
}

.my-20 {
	margin-top: 20px;
	margin-bottom: 20px
}

.my-25 {
	margin-top: 25px;
	margin-bottom: 25px
}

.my-30 {
	margin-top: 30px;
	margin-bottom: 30px
}

.my-35 {
	margin-top: 35px;
	margin-bottom: 35px
}

.my-40 {
	margin-top: 40px;
	margin-bottom: 40px
}

.my-45 {
	margin-top: 45px;
	margin-bottom: 45px
}

.my-50 {
	margin-top: 50px;
	margin-bottom: 50px
}

.mt-5 {
	margin-top: 5px
}

.mt-10 {
	margin-top: 10px
}

.mt-15 {
	margin-top: 15px
}

.mt-20 {
	margin-top: 20px
}

.mt-25 {
	margin-top: 25px
}

.mt-30 {
	margin-top: 30px
}

.mt-35 {
	margin-top: 35px
}

.mt-40 {
	margin-top: 40px
}

.mt-45 {
	margin-top: 45px
}

.mt-50 {
	margin-top: 50px
}

.mb-5 {
	margin-bottom: 5px
}

.mb-10 {
	margin-bottom: 10px
}

.mb-15 {
	margin-bottom: 15px
}

.mb-20 {
	margin-bottom: 20px
}

.mb-25 {
	margin-bottom: 25px
}

.mb-30 {
	margin-bottom: 30px
}

.mb-35 {
	margin-bottom: 35px
}

.mb-40 {
	margin-bottom: 40px
}

.mb-45 {
	margin-bottom: 45px
}

.mb-50 {
	margin-bottom: 50px
}

.ml-5 {
	margin-left: 5px
}

.ml-10 {
	margin-left: 10px
}

.ml-15 {
	margin-left: 15px
}

.ml-20 {
	margin-left: 20px
}

.ml-25 {
	margin-left: 25px
}

.ml-30 {
	margin-left: 30px
}

.ml-35 {
	margin-left: 35px
}

.ml-40 {
	margin-left: 40px
}

.ml-45 {
	margin-left: 45px
}

.ml-50 {
	margin-left: 50px
}

.mr-5 {
	margin-right: 5px
}

.mr-10 {
	margin-right: 10px
}

.mr-15 {
	margin-right: 15px
}

.mr-20 {
	margin-right: 20px
}

.mr-25 {
	margin-right: 25px
}

.mr-30 {
	margin-right: 30px
}

.mr-35 {
	margin-right: 35px
}

.mr-40 {
	margin-right: 40px
}

.mr-45 {
	margin-right: 45px
}

.mr-50 {
	margin-right: 50px
}

.mt-60 {
	margin-top: 60px
}

.mt-70 {
	margin-top: 70px
}

.mb-28 {
	margin-bottom: 28px
}

.mb-33 {
	margin-bottom: 33px
}

.mb-55 {
	margin-bottom: 55px
}

.mb-60 {
	margin-bottom: 60px
}

.mb-65 {
	margin-bottom: 65px
}

.mb-70 {
	margin-bottom: 70px
}

.mb-80 {
	margin-bottom: 80px
}

@media (max-width: 1199px) {
	.mb-80 {
		margin-bottom: 60px
	}
}

.mt-n1 {
	margin-top: -.25rem
}

.mt-n2 {
	margin-top: -.45rem
}

.mt-n3 {
	margin-top: -0.8rem
}

.mt-n4 {
	margin-top: -1.5rem
}

.mt-n5 {
	margin-top: -3rem
}

.mb-n1 {
	margin-bottom: -.25rem
}

.mb-n2 {
	margin-bottom: -.45rem
}

.mb-n3 {
	margin-bottom: -0.8rem
}

.mb-n4 {
	margin-bottom: -1.5rem
}

.mb-n5 {
	margin-bottom: -3rem
}

.space,
.space-top {
	padding-top: var(--section-space)
}

.space,
.space-bottom {
	padding-bottom: var(--section-space)
}

.space-extra,
.space-extra-top {
	padding-top: calc(var(--section-space) - 30px)
}

.space-extra,
.space-extra-bottom {
	padding-bottom: calc(var(--section-space) - 30px)
}

.space-extra2,
.space-extra2-top {
	padding-top: calc(var(--section-space) - 40px)
}

.space-extra2,
.space-extra2-bottom {
	padding-bottom: calc(var(--section-space) - 40px)
}

@media (max-width: 991px) {

	.space,
	.space-top {
		padding-top: var(--section-space-mobile)
	}

	.space-extra,
	.space-extra-top {
		padding-top: calc(var(--section-space-mobile) - 30px)
	}

	.space-extra,
	.space-extra-bottom {
		padding-bottom: calc(var(--section-space-mobile) - 30px)
	}

	.space-top-md-none {
		padding-top: 0
	}

	.space-extra2,
	.space-extra2-top {
		padding-top: calc(var(--section-space-mobile) - 30px)
	}

	.space-extra2,
	.space-extra2-bottom {
		padding-bottom: calc(var(--section-space-mobile) - 30px)
	}
}

.main-menu-two__social {
	position: relative;
	display: flex;
	align-items: center;
	margin-left: 40px;
}

.main-menu-two__social a::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: var(--finris-primary);
	transform: scale(0.5);
	border-radius: 5px;
	opacity: 0;
	-webkit-transition: all 0.4s linear;
	-o-transition: all 0.4s linear;
	transition: all 0.4s linear;
	z-index: -1;
}

.main-menu-two__social a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	width: 40px;
	border: 1px solid rgba(var(--finris-white-rgb), .10);
	border-radius: 5px;
	font-size: 15px;
	color: var(--finris-white);
	background-color: transparent;
	overflow: hidden;
	-webkit-transition: all 0.4s linear;
	-o-transition: all 0.4s linear;
	transition: all 0.4s linear;
	z-index: 1;
}

/*banner-start*/


.banner-con {
	position: relative;
	z-index: 2;
	margin-top: 60px;
}

.unlock-dev p {
	text-align: justify;
}

.unlock-dev h2 {
	line-height: 45px;
}

.tech-pad h4 {
	font-size: 27px;
	color: #221c77;
	font-family: Robotob, Helvetica, sans-serif;
}

@media (min-width:320px) and (max-width:991px) {

	/* .header-logo img.logo-dark {
	display: none !important;
	visibility: visible !important;
} */
	.header-logo img.logo-dark1 {
		display: block !important;
		margin-top: 0px;
	}
}

@media only screen and (max-width: 575px) {}

.closesanta {
	display: none;
}

.banner-con h1 {
	font-weight: bold;
	font-size: 29px;
	line-height: 35px;
}

.banner-con h1 span {
	display: inline-block;
	width: 100%;
}

.banner-con p {
	line-height: 22px;
	font-size: 14px;
}

.pro-demo li a {
	text-transform: uppercase;
	color: #ffffff;
	font-size: 12px;
	border-right: 1px solid #fff;
	padding: 0 10px;
}

.pro-demo li {
	display: inline-block;
}

.pro-demo li:last-child {
	border: none;
}

.pro-demo {
	margin-top: 20px;
}

.pro-demo li:last-child a {
	border: none;
}

.pro-demo li a:hover {
	color: #256bfa;
}

.tech-pad {
	padding: 42px 0px 0px 0px;
}

.pro-image li {
	display: inline-block;
	margin: 15px 29px;
	padding: 20px 9px;
	background-color: #ffffff;
	border-radius: 10px;
	-webkit-box-shadow: 0px 0px 31px 10px rgba(0, 0, 0, 0.18);
	-moz-box-shadow: 0px 0px 31px 10px rgba(0, 0, 0, 0.18);
	box-shadow: 5px 0px 20px 2px rgba(0, 0, 0, 0.18);
	min-height: 113px;
	vertical-align: middle;
	width: 200px;
}

.sys-arch li {
	background-color: #21166c;
	display: inline-block;
	padding: 30px 20px;
	margin: 0 10px;
	width: 17%;
	border-radius: 10px;
}

.offer-block span {
	display: inline-block;
	text-align: center;
	font-weight: bold;
	width: 100%;
	font-size: 22px;
	color: #000000;
}

.sub-title {
	line-height: 46px;
}

.ready-sec p {
	text-align: justify;
}



.module-carousel.owl-carousel {
	display: block;
}

.offer-block {
	text-align: center;
	/* margin: 10px 0; */
	padding: 27px 0px;
	margin: 23px 0;
	border-radius: 15px;
	/* box-shadow: 0 5px 15px rgba(0, 0, 0, .1); */
	overflow: hidden;
	flex-direction: column;
	background: #fff;
	height: auto;
	position: relative;
	transform-style: preserve-3d;
	transition: transform 0.6s;
	height: 348px;
	-webkit-box-shadow: inset 0 0 30px #00f;
	-moz-box-shadow: inset 0 0 30px #00f;
	box-shadow: inset 0 0 30px #ccf;
	border: 2px solid #d5d5d5;
}

.offer-block p {
	padding-top: 10px;
}

.offer-block:hover {
	-webkit-transform: translateY(-15px);
	transform: translateY(-15px);
	-webkit-box-shadow: inset 0 0 30px #00f;
	-moz-box-shadow: inset 0 0 30px #00f;
	box-shadow: inset 0 0 30px #5d5df9;
	/* background: #f3f7ff; */
	padding: 27px 20px;
	background: rgb(97, 97, 218);
	background: -moz-linear-gradient(180deg, rgba(97, 97, 218, 1) 0%, rgba(34, 34, 143, 1) 100%);
	background: -webkit-linear-gradient(180deg, rgba(97, 97, 218, 1) 0%, rgba(34, 34, 143, 1) 100%);
	background: linear-gradient(180deg, rgba(97, 97, 218, 1) 0%, rgba(34, 34, 143, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#6161da", endColorstr="#22228f", GradientType=1);
	border: 2px solid #4d43e3;
}

.rich-btn .button {
	background: rgb(97, 97, 218);
	background: -moz-linear-gradient(180deg, rgba(97, 97, 218, 1) 0%, rgba(34, 34, 143, 1) 100%);
	background: -webkit-linear-gradient(180deg, rgba(97, 97, 218, 1) 0%, rgba(34, 34, 143, 1) 100%);
	background: linear-gradient(180deg, rgba(97, 97, 218, 1) 0%, rgba(34, 34, 143, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#6161da", endColorstr="#22228f", GradientType=1);
}

.nav-toggle {
	line-height: 84px;
}

.cer-image li {
	display: inline-block;
	margin: 0 0px;
}

.lmpbx h5 {
	font-size: 24px;
	font-weight: 300;
	font-family: Roboto;
	line-height: 29px;
}

.cer-image.owl-carousel .owl-controls .owl-buttons div {
	top: -85px;
}

@media screen and (max-width: 760px) {
	.contact-box .heading {
		font-size: 26px;
		font-weight: bold;
		margin-bottom: 14px;
	}
}

.article-container {
	border-radius: 20px;
	background: #fefefe;
	padding: 10px;
	margin-top: 10px;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-top-left-radius: 14px;
	border-top-right-radius: 14px;
	box-shadow: 0px 0px 12px 6px rgba(174, 174, 174, 0.33);
	-webkit-box-shadow: 0px 0px 12px 6px rgba(174, 174, 174, 0.33);
	-moz-box-shadow: 0px 0px 12px 6px rgba(174, 174, 174, 0.33);
}

.post-thumbnail {
	border-radius: 12px;
	max-width: 100%;
}

.post .article-container:hover .article-content::before {
	height: 101px;
}

.post .article-container:hover .article-content::after {
	width: 101px;
}

.entry-title {
	padding: 0px;
}

.entry-title a {
	font-size: 15px;
	color: #000;
	color: #32236f;
	font-weight: bold;
	line-height: 7px !important;
}

svg#freepik_stories-crypto-portfolio:not(.animated) .animable {
	opacity: 0;
}

svg#freepik_stories-crypto-portfolio.animated #freepik--background-complete--inject-33 {
	animation: 1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideLeft;
	animation-delay: 0s;
}

svg#freepik_stories-crypto-portfolio.animated #freepik--Device--inject-33 {
	animation: 1.2s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideUp, 1.5s Infinite linear floating;
	animation-delay: 0s, 1.2s;
}

svg#freepik_stories-crypto-portfolio.animated #freepik--Character--inject-33 {
	animation: 1.5s Infinite linear floating;
	animation-delay: 0s;
}

svg#freepik_stories-crypto-portfolio.animated #freepik--Coins--inject-33 {
	animation: 1.5s Infinite linear floating;
	animation-delay: 0s;
}

@keyframes slideLeft {
	0% {
		opacity: 0;
		transform: translateX(-30px);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideUp {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}

	100% {
		opacity: 1;
		transform: inherit;
	}
}

@keyframes floating {
	0% {
		opacity: 1;
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-10px);
	}

	100% {
		opacity: 1;
		transform: translateY(0px);
	}
}

.contact-img img {
	position: relative;
	bottom: -39px;
}

.main-menu ul.sub-menu li a::before {
	/* content: "\f105"; */
	position: absolute;
	top: 6px;
	left: -3px;
	font-family: "Font Awesome 6 Free";
	width: 0;
	height: 0;
	text-align: center;
	border-radius: 50%;
	display: inline-block;
	font-size: 17px;
	line-height: 1;
	color: var(--theme-color);
	/* font-weight: 900; */
	opacity: 0;
	visibility: visible;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

.main-menu ul.sub-menu1 li:nth-child(1) a::before {
	content: "\f362";
}

.main-menu ul.sub-menu1 li:nth-child(2) a::before {
	content: "\f0ac";
}

.main-menu ul.sub-menu1 li:nth-child(3) a::before {
	content: "\f061";
}

.main-menu ul.sub-menu1 li:nth-child(4) a::before {
	content: "\f51e";
}

.main-menu ul.sub-menu1 li:nth-child(5) a::before {
	content: "\f555";
}

.main-menu ul.sub-menu1 li:nth-child(6) a::before {
	content: "\f09d";
}

.main-menu ul.sub-menu1 li:nth-child(7) a::before {
	content: "\f4d3";
}

.main-menu ul.sub-menu1 li:nth-child(8) a::before {
	content: "\f24e";
}

.main-menu ul.sub-menu1 li:nth-child(9) a::before {
	content: "\f83e";
}

.main-menu ul.sub-menu1 li:nth-child(10) a::before {
	content: "\f201";
}

.main-menu ul.sub-menu1 li:nth-child(11) a::before {
	content: "\f2b5";
}

.main-menu ul.sub-menu2 li:nth-child(1) a::before {
	content: "\f555";
}

.main-menu ul.sub-menu2 li:nth-child(2) a::before {
	content: "\f51e";
}

.main-menu ul.sub-menu2 li:nth-child(3) a::before {
	content: "\f3ed";
}

.main-menu ul.sub-menu2 li:nth-child(4) a::before {
	content: "\f2b5";
}

.main-menu ul.sub-menu2 li:nth-child(5) a::before {
	content: "\f063";
}

.main-menu ul.sub-menu3 li:nth-child(6) a::before {
	content: "\f544";
}

.main-menu ul.sub-menu3 li:nth-child(7) a::before {
	content: "\f43c";
}

.main-menu ul.sub-menu3 li:nth-child(1) a::before {
	content: "\f544";
}

.main-menu ul.sub-menu3 li:nth-child(2) a::before {
	content: "\f54e";
}

.main-menu ul.sub-menu3 li:nth-child(3) a::before {
	content: "\f1e6";
}

.main-menu ul.sub-menu3 li:nth-child(4) a::before {
	content: "\f54e";
}

.main-menu ul.sub-menu3 li:nth-child(5) a::before {
	content: "\f1b3";
}

.main-menu ul.sub-menu3 li:nth-child(6) a::before {
	content: "\f7c0";
}

.main-menu ul.sub-menu3 li:nth-child(7) a::before {
	content: "\f5dc";
}

.main-menu ul.sub-menu4 li:nth-child(1) a::before {
	content: "\f135";
}

.main-menu ul.sub-menu4 li:nth-child(2) a::before {
	content: "\f2f1";
}

.main-menu ul.sub-menu4 li:nth-child(3) a::before {
	content: "\f25a";
}

.main-menu ul.sub-menu4 li:nth-child(4) a::before {
	content: "\f521";
}

.main-menu ul.sub-menu4 li:nth-child(5) a::before {
	content: "\f1de";
}

.main-menu ul.sub-menu4 li:nth-child(6) a::before {
	content: "\f522";
}

.main-menu ul.sub-menu5 li:nth-child(1) a::before {
	content: "\f500";
}

.main-menu ul.sub-menu5 li:nth-child(2) a::before {
	content: "\f200";
}

.main-menu ul.sub-menu5 li:nth-child(3) a::before {
	content: "\f15c";
}

.main-menu ul.sub-menu5 li:nth-child(4) a::before {
	content: "\f4c0";
}

.main-menu ul.sub-menu5 li:nth-child(5) a::before {
	content: "\f625";
}

.main-menu ul.sub-menu5 li:nth-child(6) a::before {
	content: "\f522";
}

.main-menu ul.sub-menu5 li:nth-child(7) a::before {
	content: "\f522";
}

.main-menu ul.sub-menu6 li:nth-child(1) a::before {
	content: "\f061";
}

.main-menu ul.sub-menu6 li:nth-child(2) a::before {
	content: "\f061";
}

.main-menu ul.sub-menu6 li:nth-child(3) a::before {
	content: "\f061";
}

.main-menu ul.sub-menu6 li:nth-child(4) a::before {
	content: "\f061";
}

.main-menu ul.sub-menu7 li:nth-child(1) a::before {
	content: "\f061";
}

.main-menu ul.sub-menu7 li:nth-child(2) a::before {
	content: "\f061";
}

.main-menu ul.sub-menu7 li:nth-child(3) a::before {
	content: "\f061";
}

.main-menu ul.sub-menu7 li:nth-child(4) a::before {
	content: "\f061";
}

.main-menu ul.sub-menu8 li:nth-child(1) a::before {
	content: "\f061";
}

.main-menu ul.sub-menu8 li:nth-child(2) a::before {
	content: "\f061";
}

.main-menu ul.sub-menu8 li:nth-child(3) a::before {
	content: "\f061";
}

.main-menu ul.sub-menu8 li:nth-child(4) a::before {
	content: "\f061";
}