:root {
	--body: #fff;
	--black: #000;
	--white: #fff;
	--theme: #ea1826;
	--theme2: #ea1826;
	--header: #121315;
	--text: #666;
	--border: #d4dced;
	--border-2: #d4dced;
	--bg: #1e2023;
	--box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, .13);
}

.theme-btn {
	background-color: var(--theme);
	color: var(--white);
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	padding: 24px 50px;
	border-radius: 0;
	text-transform: uppercase;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	position: relative;
	z-index: 1;
	line-height: 1;
}

.theme-btn::before {
	content: "";
	background-color: var(--header);
	width: 0;
	height: 50%;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	transition: all .3s cubic-bezier(.785, .135, .15, .86);
	z-index: -1;
}

.theme-btn::after {
	content: "";
	background-color: var(--header);
	width: 0;
	height: 50%;
	position: absolute;
	bottom: 0;
	right: 0;
	-webkit-transition: all .3s cubic-bezier(.785, .135, .15, .86);
	transition: all .3s cubic-bezier(.785, .135, .15, .86);
	z-index: -1;
}

.theme-btn i {
	margin-left: 10px;
}

.theme-btn:hover {
	color: var(--white);
}

.theme-btn:hover::before, .theme-btn:hover::after {
	width: 100%;
}

@media (max-width: 767px) {
	.theme-btn {
		padding: 20px 32px;
	}
}

@media (max-width: 575px) {
	.theme-btn {
		padding: 18px 30px;
		font-size: 14px;
	}
}

body {
	font-family: "DM Sans", sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 28px;
	color: var(--text);
	background-color: var(--body);
	padding: 0;
	margin: 0;
	overflow-x: hidden;
}

ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

button {
	border: none;
	background-color: transparent;
	padding: 0;
}

input:focus {
	color: var(--white);
	outline: none;
}

input {
	color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
	font-family: "DM Sans", sans-serif;
	margin: 0px;
	padding: 0;
	color: var(--header);
	text-transform: capitalize;
	transition: all .4s ease-in-out;
}

h1 {
	font-size: 100px;
	font-weight: 700;
	line-height: 106%;
}

h2 {
	font-size: 48px;
	line-height: 115%;
	font-weight: 800;
}

@media (max-width: 767px) {
	h2 {
		font-size: 36px;
	}
}

h4 {
	font-size: 20px;
	font-weight: 700;
}

h5 {
	font-size: 18px;
	font-weight: 700;
}

a {
	text-decoration: none;
	outline: none !important;
	cursor: pointer;
	color: var(--header);
	transition: all .4s ease-in-out;
}

p {
	margin: 0px;
	transition: all .4s ease-in-out;
}

span {
	margin: 0px;
	transition: all .4s ease-in-out;
}

@-webkit-keyframes rippleOne {
	70% {
		-webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
		box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
	}
	
	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
		box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
	}
}

@keyframes rippleOne {
	70% {
		-webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
		box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
	}
	
	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
		box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
	}
}

@keyframes cir36 {
	100% {
		transform: rotate(360deg);
	}
}

@keyframes rounded {
	50% {
		transform: rotate(15deg);
	}
}

@keyframes up-down {
	0% {
		transform: translateY(10px);
	}
	
	100% {
		transform: translateY(-10px);
	}
}

@-webkit-keyframes spinner {
	to {
		-webkit-transform: rotateZ(360deg);
		transform: rotateZ(360deg);
	}
}

@keyframes spinner {
	to {
		-webkit-transform: rotateZ(360deg);
		transform: rotateZ(360deg);
	}
}

@-webkit-keyframes letters-loading {
	0%, 75%, 100% {
		opacity: 0;
		transform: rotateY(-90deg);
	}
	
	25%, 50% {
		opacity: 1;
		transform: rotateY(0deg);
	}
}

@keyframes letters-loading {
	0%, 75%, 100% {
		opacity: 0;
		transform: rotateY(-90deg);
	}
	
	25%, 50% {
		opacity: 1;
		transform: rotateY(0deg);
	}
}

@keyframes loaderspin {
	0% {
		transform: translate(-50%, -50%) rotate(0deg);
	}
	
	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

@keyframes tpswing {
	0% {
		-webkit-transform: rotate(20deg);
		-ms-transform: rotate(20deg);
		transform: rotate(20deg);
	}
	
	100% {
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}
}

@keyframes width {
	0% {
		width: 0%;
	}
	
	100% {
		width: 100%;
	}
}

@-webkit-keyframes width {
	0% {
		width: 0%;
	}
	
	100% {
		width: 100%;
	}
}

@-webkit-keyframes loaderspin {
	0% {
		transform: translate(-50%, -50%) rotate(0deg);
	}
	
	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

@keyframes loaderpulse {
	0% {
		transform: scale(1);
	}
	
	100% {
		transform: scale(1.2);
	}
}

@keyframes rounded {
	50% {
		transform: rotate(20deg);
	}
}

@keyframes cir36 {
	100% {
		transform: rotate(360deg);
	}
}

@-webkit-keyframes float-bob-y {
	0% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
	
	50% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
	
	100% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
}

@keyframes float-bob-y {
	0% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
	
	50% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
	
	100% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
}

@-webkit-keyframes float-bob-x {
	0% {
		-webkit-transform: translateX(0px);
		transform: translateX(30px);
	}
	
	50% {
		-webkit-transform: translateX(10px);
		transform: translateX(10px);
	}
	
	100% {
		-webkit-transform: translateX(30px);
		transform: translateX(30px);
	}
}

@keyframes float-bob-x {
	0% {
		-webkit-transform: translateX(30px);
		transform: translateX(30px);
	}
	
	50% {
		-webkit-transform: translateX(10px);
		transform: translateX(10px);
	}
	
	100% {
		-webkit-transform: translateX(30px);
		transform: translateX(30px);
	}
}

@keyframes bounce-x {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	
	50% {
		-webkit-transform: translateX(30px);
		transform: translateX(30px);
	}
	
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes criss-cross-left {
	0% {
		left: -20px;
	}
	
	50% {
		left: 50%;
		width: 20px;
		height: 20px;
	}
	
	100% {
		left: 50%;
		width: 375px;
		height: 375px;
	}
}

@keyframes criss-cross-right {
	0% {
		right: -20px;
	}
	
	50% {
		right: 50%;
		width: 20px;
		height: 20px;
	}
	
	100% {
		right: 50%;
		width: 375px;
		height: 375px;
	}
}

@keyframes rotated2 {
	0% {
		transform: rotate(0);
	}
	
	100% {
		transform: rotate(-360deg);
	}
}

@keyframes wave {
	0% {
		transform: translateX(0);
	}
	
	50% {
		transform: translateX(-25%);
	}
	
	100% {
		transform: translateX(-50%);
	}
}

@keyframes animate-positive {
	0% {
		width: 0;
	}
}

.contact-form-items {
	background-color: var(--white);
	padding: 120px 40px;
	margin-bottom: -350px;
	position: relative;
	z-index: 9;
	box-shadow: 0px -10px 40px 0px rgba(0, 0, 0, .15);
}

@media (max-width: 1199px) {
	.contact-form-items {
		padding: 100px 40px;
	}
}

@media (max-width: 991px) {
	.contact-form-items {
		padding: 80px 30px;
	}
}

.contact-form-items .title {
	margin-bottom: 40px;
}

.contact-form-items .title h2 {
	margin-bottom: 5px;
}

.contact-form-items .form-clt {
	position: relative;
}

.contact-form-items .form-clt input, .contact-form-items .form-clt textarea {
	padding: 16px 30px;
	border: none;
	outline: none;
	background-color: #f2f5fa;
	width: 100%;
	font-size: 16px;
	font-weight: 400;
	color: var(--text);
}

@media (max-width: 575px) {
	.contact-form-items .form-clt input, .contact-form-items .form-clt textarea {
		padding: 12px 20px;
	}
}

.contact-form-items .form-clt textarea {
	padding: 18px 30px 110px;
}

@media (max-width: 575px) {
	.contact-form-items .form-clt textarea {
		padding: 12px 20px 90px;
	}
}

.contact-form-items .form-clt::placeholder {
	color: var(--text);
}

.contact-form-items .form-clt .icon {
	position: absolute;
	right: 30px;
	top: 16px;
	color: var(--text);
}

@media (max-width: 1199px) {
	.faq-wrapper .section-title br {
		display: none;
	}
}

.footer-section {
	position: relative;
	z-index: 9;
}

.footer-section::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	z-index: -1;
	background-color: var(--header);
	opacity: .95;
}

.footer-widgets-wrapper {
	padding: 25px 0 55px;
	position: relative;
	z-index: 9;
}

.footer-widgets-wrapper .single-footer-widget {
	margin-top: 30px;
}

.footer-widgets-wrapper .single-footer-widget .widget-head {
	margin-bottom: 30px;
}

@media (max-width: 575px) {
	.footer-widgets-wrapper .single-footer-widget .widget-head {
		margin-bottom: 20px;
	}
}

.footer-widgets-wrapper .single-footer-widget .widget-head h5 {
	font-weight: bold;
	color: var(--white);
	font-size: 18px;
	display: inline-block;
	position: relative;
	padding-bottom: 20px;
}

.footer-widgets-wrapper .single-footer-widget .widget-head h5::before {
	position: absolute;
	bottom: 0;
	left: 0;
	content: "";
	width: 25px;
	height: 2px;
	background-color: var(--theme);
}

.footer-widgets-wrapper .single-footer-widget .widget-head h5::after {
	position: absolute;
	bottom: 0;
	left: 40px;
	content: "";
	width: 55px;
	height: 2px;
	background-color: var(--white);
}

@media (max-width: 767px) {
	.footer-widgets-wrapper .single-footer-widget .widget-head h5 {
		font-size: 23px;
	}
}

@media (max-width: 575px) {
	.footer-widgets-wrapper .single-footer-widget .widget-head h5 {
		font-size: 20px;
	}
}

.footer-widgets-wrapper .single-footer-widget .footer-content p {
	color: rgba(217, 217, 217, .8);
}

.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon {
	margin-top: 40px;
	gap: 15px;
	position: relative;
	z-index: 9;
}

@media (max-width: 575px) {
	.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon {
		margin-top: 20px;
	}
}

.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a {
	width: 36px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	text-align: center;
	font-size: 16px;
	display: block;
	color: rgba(255, 255, 255, .8);
	transition: all .4s ease-in-out;
	background-color: transparent;
	border: 1px solid rgba(255, 255, 255, .4);
}

.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a:hover {
	background-color: var(--theme);
	color: var(--white);
	border: 1px solid transparent;
}

.footer-widgets-wrapper .single-footer-widget .footer-gallery .gallery-wrap .gallery-item {
	display: flex;
	align-items: center;
	gap: 10px;
}

.footer-widgets-wrapper .single-footer-widget .footer-gallery .gallery-wrap .gallery-item:not(:last-child) {
	margin-bottom: 10px;
}

.footer-widgets-wrapper .single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb {
	position: relative;
}

@media (max-width: 575px) {
	.footer-widgets-wrapper .single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb {
		width: 100px;
	}
}

.footer-widgets-wrapper .single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb img {
	max-width: 80px;
	width: 100%;
	height: 80px;
	object-fit: cover;
}

.footer-widgets-wrapper .single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb .icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	text-align: center;
	transition: .3s;
	opacity: 0;
	width: 100%;
	height: 100%;
}

.footer-widgets-wrapper .single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb .icon::after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(255, 91, 31, .7);
	transition: .4s;
	opacity: 0;
	width: 100%;
	height: 100%;
}

.footer-widgets-wrapper .single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb .icon i {
	color: var(--white);
	font-size: 22px;
	z-index: 99;
	position: relative;
	margin-top: 30px;
}

.footer-widgets-wrapper .single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb:hover .icon {
	opacity: 1;
}

.footer-widgets-wrapper .single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb:hover .icon::after {
	opacity: 1;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, .2);
	padding: 40px 0;
}

.footer-bottom p {
	text-align: center;
	color: rgba(217, 217, 217, .8);
}

.header-main {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0;
}

.header-main .main-menu ul {
	margin-bottom: 0;
}

.header-main .main-menu ul li {
	position: relative;
	list-style: none;
	display: inline-block;
	margin-inline-end: 50px;
}

.header-main .main-menu ul li:last-child {
	margin-inline-end: 0;
}

.header-main .main-menu ul li a {
	display: inline-block;
	font-size: 17px;
	font-weight: 600;
	color: var(--header);
	padding: 20px 0;
	text-align: left;
	position: relative;
	text-transform: capitalize;
	transition: all .4s ease-in-out;
}

.header-main .main-menu ul li a:hover {
	color: var(--theme) !important;
}

.header-main .main-menu ul li .sub-menu {
	position: absolute;
	top: 100%;
	inset-inline-start: 0;
	min-width: 240px;
	background: var(--white);
	z-index: 99999;
	visibility: hidden;
	opacity: 0;
	transform-origin: top center;
	color: var(--header);
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .2);
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .2);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .2);
	transform: translateY(10px);
	transition: all .4s ease-in-out;
}

.header-main .main-menu ul li .sub-menu li {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
}

.header-main .main-menu ul li .sub-menu li a {
	position: relative;
	z-index: 11;
	font-size: 17px;
	font-weight: 600;
	color: var(--header);
	padding: 0 25px;
	padding-bottom: 11px;
	padding-top: 11px;
	width: 100%;
	border-bottom: 1px solid #eee;
}

.header-main .main-menu ul li .sub-menu li a:hover {
	color: var(--white) !important;
}

.header-main .main-menu ul li .sub-menu li:last-child a {
	border: none;
}

.header-main .main-menu ul li .sub-menu li:hover > a {
	background: var(--theme);
	color: var(--white) !important;
}

.header-main .main-menu ul li .sub-menu li:hover > a::after {
	color: var(--theme);
}

.header-main .main-menu ul li:hover > a {
	color: var(--theme);
}

.header-main .main-menu ul li:hover > a::after {
	color: var(--theme);
}

.header-main .main-menu ul li:hover > .sub-menu {
	visibility: visible;
	opacity: 1;
	transform: translateY(0px);
}

.header-main .header-right {
	gap: 30px;
}

@media (max-width: 1399px) {
	.header-main .header-right {
		gap: 20px;
	}
}

.header-main .sidebar__toggle {
	cursor: pointer;
	font-size: 20px;
	color: var(--header);
}

.offcanvas__info {
	background: var(--white) repeat scroll 0 0;
	border-left: 2px solid var(--theme);
	position: fixed;
	right: 0;
	top: 0;
	width: 400px;
	height: 100%;
	-webkit-transform: translateX(calc(100% + 80px));
	-moz-transform: translateX(calc(100% + 80px));
	-ms-transform: translateX(calc(100% + 80px));
	-o-transform: translateX(calc(100% + 80px));
	transform: translateX(calc(100% + 80px));
	-webkit-transition: transform .45s ease-in-out, opacity .45s ease-in-out;
	-moz-transition: transform .45s ease-in-out, opacity .45s ease-in-out;
	transition: transform .45s ease-in-out, opacity .45s ease-in-out;
	z-index: 99999;
	overflow-y: scroll;
	overscroll-behavior-y: contain;
	scrollbar-width: none;
}

.offcanvas__info::-webkit-scrollbar {
	display: none;
}

.offcanvas__logo a img {
	width: 150px;
}

.offcanvas__wrapper {
	position: relative;
	height: 100%;
	padding: 30px 30px;
}

.offcanvas__wrapper .offcanvas__content .text {
	color: var(--text);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close {
	width: 45px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	border-radius: 50%;
	background-color: var(--theme);
	position: relative;
	z-index: 9;
	cursor: pointer;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
	color: var(--white);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
	margin-top: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
	margin-top: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
	color: var(--text);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
	margin-bottom: 15px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
	margin-right: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
	color: var(--theme);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
	text-transform: initial;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
	width: 100%;
	padding: 16px 40px;
	text-transform: capitalize !important;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
	margin-top: 30px;
	gap: 10px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
	width: 45px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	text-align: center;
	font-size: 16px;
	display: block;
	background: transparent;
	color: var(--text);
	border-radius: 50%;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	border: 1px solid var(--border);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
	background-color: var(--theme);
	color: var(--white);
}

.offcanvas__overlay {
	position: fixed;
	height: 100%;
	width: 100%;
	background: #151515;
	z-index: 900;
	top: 0;
	opacity: 0;
	visibility: hidden;
	right: 0;
}

@media (max-width: 450px) {
	.offcanvas__info {
		width: 300px;
	}
}

@media (max-width: 575px) {
	.offcanvas__wrapper {
		padding: 20px;
	}
}

.breadcrumb-wrapper {
	position: relative;
	overflow: hidden;
	z-index: 9;
	padding-top: 190px;
	padding-bottom: 50px;
}

@media (max-width: 1199px) {
	.breadcrumb-wrapper {
		padding-top: 80px;
	}
}

@media (max-width: 991px) {
	.breadcrumb-wrapper {
		padding-top: 160px;
		padding-bottom: 0;
	}
}

.breadcrumb-wrapper::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	z-index: -1;
	opacity: .85;
	background: var(--header);
}

.breadcrumb-wrapper .page-heading h1 {
	color: var(--white);
	font-size: 74px;
	position: relative;
	z-index: 9;
	text-transform: uppercase;
}

@media (max-width: 991px) {
	.breadcrumb-wrapper .page-heading h1 {
		font-size: 60px;
	}
}

@media (max-width: 575px) {
	.breadcrumb-wrapper .page-heading h1 {
		font-size: 42px;
	}
}

.breadcrumb-wrapper .breadcrumb-wrapper-items {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

@media (max-width: 991px) {
	.breadcrumb-wrapper .breadcrumb-wrapper-items {
		flex-wrap: wrap;
	}
}

::-webkit-scrollbar {
	width: 10px;
	height: 4px;
}

::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px var(--theme);
	border-radius: 5px;
}

::-webkit-scrollbar-thumb {
	background: var(--theme);
	border-radius: 10px;
}

.fix {
	overflow: hidden;
}

.mt-10 {
	margin-top: 10px;
}

@media (max-width: 767px) {
	br {
		display: none;
	}
}

.mt-60 {
	margin-top: 55px;
}

.mb-40 {
	margin-bottom: 40px;
}

.bg-cover {
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	background-position: center;
}

.page-nav-wrap ul li {
	display: inline-block;
	text-align: center;
}

@media (max-width: 1199px) {
	.hero-1 .hero-content h1 br {
		display: none;
	}
}

.blog-post-details .single-blog-post .post-content .hilight-text svg {
	float: right;
	margin-top: -30px;
}

.preloader {
	align-items: center;
	cursor: default;
	display: flex;
	height: 100%;
	justify-content: center;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 9999999;
}

.preloader .animation-preloader {
	z-index: 1000;
}

.preloader .animation-preloader .spinner {
	animation: spinner 1s infinite linear;
	border-radius: 50%;
	border: 3px solid rgba(0, 0, 0, .2);
	border-top-color: var(--theme);
	height: 9em;
	margin: 0 auto 3.5em auto;
	width: 9em;
}

@media (max-width: 767px) {
	.preloader .animation-preloader .spinner {
		width: 7.5em;
		height: 7.5em;
		margin: 0 auto 1.5em auto;
	}
}

.preloader .animation-preloader .txt-loading {
	font: bold 5em "DM Sans", sans-serif, "DM Sans", sans-serif;
	text-align: center;
	user-select: none;
}

@media (max-width: 767px) {
	.preloader .animation-preloader .txt-loading {
		font-size: 2.5em;
	}
}

.preloader .animation-preloader .txt-loading .letters-loading {
	color: var(--theme);
	position: relative;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
	animation-delay: .2s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
	animation-delay: .4s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
	animation-delay: .6s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
	animation-delay: .8s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
	animation-delay: 1s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
	animation-delay: 1.2s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
	animation-delay: 1.4s;
}

.preloader .animation-preloader .txt-loading .letters-loading::before {
	animation: letters-loading 4s infinite;
	color: var(--header);
	content: attr(data-text-preloader);
	left: 0;
	opacity: 0;
	font-family: "DM Sans", sans-serif;
	position: absolute;
	top: -3px;
	transform: rotateY(-90deg);
}

.preloader p {
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 8px;
	color: var(--theme);
}

.preloader .loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	font-size: 0;
	z-index: 1;
	pointer-events: none;
}

.preloader .loader .row {
	height: 100%;
}

.preloader .loader .loader-section {
	padding: 0px;
}

.preloader .loader .loader-section .bg {
	background-color: var(--white);
	height: 100%;
	left: 0;
	width: 100%;
	transition: all 800ms cubic-bezier(.77, 0, .175, 1);
}

.search-wrap {
	width: 100%;
	height: 100%;
	overflow: hidden;
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999999;
	background-color: rgba(255, 255, 255, .9);
}

.search-wrap .search-inner {
	position: relative;
	width: 100%;
	height: 100%;
}

.search-wrap .search-cell {
	position: absolute;
	top: 50%;
	width: 100%;
	transform: translateY(-50%);
}

.search-wrap .search-field-holder {
	width: 50%;
	margin: auto;
	position: relative;
	animation: slideInUp .3s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.search-wrap .search-field-holder {
		width: 70%;
	}
}

@media (max-width: 575px) {
	.search-wrap .search-field-holder {
		width: 80%;
	}
}

.search-wrap .main-search-input {
	width: 100%;
	height: 70px;
	border: 0;
	padding: 0 50px;
	text-transform: capitalize;
	background: transparent;
	font-size: 25px;
	color: var(--theme);
	border-bottom: 2px solid var(--theme);
	text-align: center;
	letter-spacing: 2px;
}

@media (max-width: 575px) {
	.search-wrap .main-search-input {
		height: 50px;
		padding: 0 0;
		line-height: 50px;
		font-size: 18px;
	}
}

input.main-search-input::placeholder {
	color: var(--theme);
	opacity: 1;
	font-size: 25px;
}

@media (max-width: 575px) {
	input.main-search-input::placeholder {
		font-size: 18px;
	}
}

.search-close {
	position: absolute;
	top: 50px;
	right: 50px;
	font-size: 30px;
	color: var(--theme);
	cursor: pointer;
}

.mouse-cursor {
	position: fixed;
	left: 0;
	top: 0;
	pointer-events: none;
	border-radius: 50%;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	visibility: hidden;
}

.cursor-inner {
	width: 6px;
	height: 6px;
	z-index: 10000001;
	background-color: var(--theme);
	-webkit-transition: width .3s ease-in-out, height .3s ease-in-out, margin .3s ease-in-out, opacity .3s ease-in-out;
	-o-transition: width .3s ease-in-out, height .3s ease-in-out, margin .3s ease-in-out, opacity .3s ease-in-out;
	transition: width .3s ease-in-out, height .3s ease-in-out, margin .3s ease-in-out, opacity .3s ease-in-out;
}

.cursor-outer {
	margin-left: -12px;
	margin-top: -12px;
	width: 30px;
	height: 30px;
	border: 1px solid var(--theme);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	z-index: 10000000;
	opacity: .5;
	-webkit-transition: all .08s ease-out;
	-o-transition: all .08s ease-out;
	transition: all .08s ease-out;
}

.back-to-top {
	border-radius: 50%;
	background-color: transparent;
	width: 60px;
	height: 60px;
	line-height: 60px;
	color: var(--theme);
	font-size: 18px;
	position: fixed;
	display: inline-block;
	z-index: 99;
	right: 30px;
	bottom: 30px;
	transition: all .4s ease-in-out;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	border: 1px solid var(--theme);
}

.back-to-top:hover {
	background-color: var(--theme);
	color: var(--white);
}