/* Form Components Here */

.form-control-1::placeholder {
	color: var(--dark-color);
}

.form-label {
	font-size: 13px;
	font-family: var(--primary-regular-font);
	color: var(--dark-color);
	margin-bottom: 2px;
}

.form-control-1 {
	border: 1px solid var(--border-color);
	font-size: 14px;
	color: var(--dark-color);
	border-radius: 60px;
	padding: 9px 25px;
	display: block;
	width: 100%;
}

.form-control-1:focus,
.form-control-1:focus-visible {
	outline: 1px solid var(--secondary-color);
}

.dark-mode .form-control-1 {
	background-color: transparent;
}

.form-control {
	background-color: var(--body-color);
	border: 1px solid #00000050;
	border-radius: 0px;
	padding: 15px 16px;
	font-size: 13px;
	resize: none;
	border-radius: 27px;
	font-family: var(--primary-medium-font);
}

.form-group {
	margin-bottom: 15px;
}

.form-control:focus,
.form-control:focus-visible {
	box-shadow: none;
	outline: none;
	border-color: var(--secondary-color);
}

button:focus,
button:focus-visible {
	box-shadow: none;
	outline: none;
}

a:hover {
	color: unset;
}

.input-inline-btn {
	position: absolute;
	right: 8px;
	bottom: 12px;
	background-color: transparent;
	border: 0px;
	/* border-left: 1px solid #00000063; */
	padding-left: 10px;
}

.input-inline-btn i {
	font-size: 15px;
	color: #052148;
}

body::-webkit-scrollbar {
	width: 0px;
}

.shop-btn {
	border-radius: 27px;
	text-decoration: none;
	border: 1px solid var(--secondary-color);
	font-size: 14px;
	padding: 7px 30px;
	font-family: var(--primary-medium-font);
	color: var(--secondary-color);
	transition: 0.6s all;
}

.link-hover:hover {
	color: var(--secondary-color);
}

/* .shop-btn.with-bg,
.shop-btn:hover {
	background-color: var(--secondary-color-bg);
	color: var(--body-color);
} */
.breadcrumb {
	margin-bottom: 0px !important;
	margin: 0px;
}

.comman-button {
	background-color: var(--secondary-color);
    border-radius: 60px;
    color: var(--body-color);
    text-align: center;
    font-family: var(--primary-medium-font);
    text-transform: capitalize;
    /* height: 55px; */
    /* width: 170px; */
    padding: 10px 20px;
    transition: 0.8s;
    border: none;
}

.comman-button a {
	text-decoration: none;
	color: white;
	font-family: var(--primary-medium-font);
	font-size: 13px;
}

.comman-button-dark {
	background-color: #404040;
	border-radius: 60px;
	font-size: 16px;
	color: var(--body-color);
	text-align: center;
	font-family: var(--primary-medium-font);
	text-transform: capitalize;
	padding: 7px 30px;
	height: 44px;
	width: 60px;
	transition: 0.8s;
	border: none;
}


.btn {
	background-color: var(--secondary-color);
	border-radius: 60px;
	font-size: 16px;
	color: var(--body-color);
	text-align: center;
	font-family: var(--primary-medium-font);
	text-transform: capitalize;
	padding: 7px 30px;
	transition: 0.8s;
}

.btn:hover {
	background-color: var(--bg-color-1);
	color: var(--secondary-color);
	border: 1px solid var(--secondary-color);
}

.btn-transparent {
	border: 1px solid var(--secondary-color);
	color: var(--secondary-color);
	background-color: transparent;
}

.custom-checkbox label {
	position: relative;
	cursor: pointer;
}

.custom-checkbox label:before {
	content: "";
	appearance: none;
	background-color: transparent;
	border: 1px solid #797979;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
		inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
	padding: 6px;
	display: inline-block;
	position: relative;
	vertical-align: middle;
	cursor: pointer;
	border-radius: 4px;
	margin-right: 5px;
}

.custom-checkbox input:checked+label:after {
	content: "";
	display: block;
	position: absolute;
	top: 4px;
	left: 5px;
	width: 4px;
	height: 9px;
	border: solid #797979;
	border-width: 0 1px 1px 0;
	transform: rotate(45deg);
}

/* Custom checkbox end here */
/* Custom Radio Start here */

.custom-radio-1:checked~.radio-here,
.custom-radio-1:not(:checked)~.radio-here {
	position: relative;
	padding-left: 32px;
	cursor: pointer;
	display: block;
	width: 18px;
	height: 15px;
}

.custom-radio-1:checked~.radio-here:before,
.custom-radio-1:not(:checked)~.radio-here:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 16px;
	height: 16px;
	border: 1px solid var(--secondary-color);
	border-radius: 100%;
	background: #fff;
}

.custom-radio-1:checked~.radio-here:after,
.custom-radio-1:not(:checked)~.radio-here:after {
	content: "";
	width: 10px;
	height: 10px;
	background: var(--secondary-color);
	position: absolute;
	top: 3px;
	left: 3px;
	border-radius: 100%;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.custom-radio-1:not(:checked)~.radio-here:after {
	opacity: 0;
	-webkit-transform: scale(0);
	transform: scale(0);
}

.custom-radio-1:checked~.radio-here:after {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

/* Custom Radio end here */

/* Form Components Here */
/* Neccesary Css Here */
* {
	transition: 0.6s all;
}

.border-rounded {
	border-radius: 60px;
}

.radius-100 {
	border-radius: 50%;
}

.radius-16 {
	border-radius: 16px;
}

.radius-20 {
	border-radius: 20px;
}

.border-down {
	border-bottom: 1px solid #a7a9aa;
}

.radius-24 {
	border-radius: 24px;
}

.radius-27 {
	border-radius: 27px;
}

.radius-30 {
	border-radius: 30px;
}

.border-roundness-0 {
	border-radius: 0px;
}

.radius-top-0 {
	border-radius: 0px 0px 16px 16px;
}

.radius-bottom-0 {
	border-radius: 16px 16px 0px 0px;
}

.cursor-pointer {
	cursor: pointer;
}

.right-0 {
	right: 0px;
}

.left-0 {
	left: 0px;
}

.space-nowrap {
	white-space: nowrap;
}

.link-here:before {
	content: "";
	position: absolute;
	width: 0;
	height: 2px;
	background-color: var(--secondary-color);
	bottom: 0;
	left: 0;
	transition: 0.8s;
}

.site-header .header-nav .link-here:hover {
	color: var(--secondary-color);
}

.link-here:hover:before {
	width: 100%;
}

.link-bg.active {
	background: var(--secondary-color);
	padding: 10px 20px;
	color: var(--body-color);
	border-radius: 27px;
}

.link-bg.active.link-here:hover:before {
	width: 0;
}

.link-here {
	position: relative;
	padding-bottom: 4px;
}

.contact-icon {
	background-color: var(--secondary-color-bg);
	height: 55px;
	width: 55px;
	border-radius: 50%;
	border: 1px solid var(--body-color);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--body-color);
	text-decoration: none;
	font-size: 30px;
	flex: 0 0 15%;
}

.product-icon {
	background-color: var(--extra-color-2);
	height: 42px;
	width: 42px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--body-color);
	text-decoration: none;
}

.icon-badge {
	background-color: var(--secondary-color);
	height: 42px;
	width: 42px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--body-color);
	text-decoration: none;
	border: 1px solid transparent;
}

.icon-badge.sm {
	height: 29px;
	width: 29px;
}

.icon-badge.md {
	height: 33px;
	width: 33px;
}

.icon-badge.sm i {
	font-size: 13px;
}

.icon-badge.md i {
	font-size: 16px;
}

.icon-badge:hover {
	background: transparent;
	border-color: var(--secondary-color);
	color: var(--secondary-color);
}

.writting-mode-lr {
	writing-mode: vertical-lr;
	rotate: 180deg;
}

figure {
	margin-bottom: 0px;
}

.secondary-border {
	border: 1px solid var(--secondary-color);
}

.box-shadow-1 {
	box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
}

.box-shadow-2 {
	box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
		rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.w-fit {
	width: fit-content;
}

.column-count-2 {
	column-count: 2;
}

.border-line {
	background-color: var(--extra-color-6);
	display: inline-block;
	width: 1px;
	height: 20px;
}

.z-index-1 {
	z-index: 1;
}

.letter-spacing-1 {
	letter-spacing: 1px;
}

.line-clamp-1,
.line-clamp-2,
.line-clamp-3,
.line-clamp-4,
.line-clamp-5 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.line-clamp-1 {
	-webkit-line-clamp: 1;
}

.line-clamp-2 {
	-webkit-line-clamp: 2;
}

.line-clamp-3 {
	-webkit-line-clamp: 3;
}

.line-clamp-4 {
	-webkit-line-clamp: 4;
}

.line-clamp-5 {
	-webkit-line-clamp: 5;
}

.object-cover {
	object-fit: cover;
}

.section {
	padding: 60px 0px 68px;
}

.number-input::-webkit-outer-spin-button,
.number-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
.number-input[type="number"] {
	-moz-appearance: textfield;
}

/* Neccesary Css Here */

/* Loader Css  */
.loader {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100vw;
	height: 100%;
	background: #fff;
	z-index: 99999;
}

/* svg {
	fill: var(--secondary-color);
	width: 100px;
	animation: roll 0.8s linear 0.2s infinite;
}
.shade {
	height: 5px;
	width: 50px;
	margin-top: 33px;
	background: var(--secondary-color);
	animation: stretch 0.8s cubic-bezier(1, 0.54, 0.77, 1.38) infinite alternate;
	margin-left: 23px;
}

@keyframes roll {
	0% {
		transform: rotateZ(0deg);
	}

	100% {
		transform: rotateZ(90deg);
	}
}
@keyframes stretch {
	0% {
		transform: scaleX(1);
	}
	70% {
		transform: scaleX(1);
	}
	100% {
		transform: scaleX(1.3);
	}
}
@keyframes jump {
	0% {
		transform: scaleY(1) translateY(0);
	}
	10% {
		transform: scaleY(1.05);
	}
	100% {
		transform: scaleY(0.9) translateY(40px);
	}
}

@keyframes grow {
	0% {
		transform: scaleY(0);
	}
	70% {
		transform: scaleX(0);
	}
	100% {
		transform: scaleY(1);
	}
} */
.ajax-loader {
	position: relative;
	transition: 200ms ease-in-out;
	font-size: 500px;
	width: 1em;
	height: 0.5em;
	z-index: 9;

	svg {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		fill: var(--secondary-color);
		overflow: visible;
		z-index: 9;
	}

	.trails {
		g {

			.trail-minor,
			.trail-major {
				opacity: 0;
			}
		}
	}
}

/* Loader Css  */

/* Variable Css End Here */
.secondary-regular-font,
.heading-font {
	font-family: var(--secondary-regular-font);
}

.primary-bold-font {
	font-family: var(--primary-bold-font);
}

.primary-light-font {
	font-family: var(--primary-light-font);
}

.primary-medium-font {
	font-family: var(--primary-medium-font);
}

.primary-regular-font,
.text-font {
	font-family: var(--primary-regular-font);
}

.primary-semibold-font {
	font-family: var(--primary-semibold-font);
}

/* Font Sizes Here */
.level-1 {
	font-size: 65px;
}

.level-2 {
	font-size: 38px;
}

.level-3 {
	font-size: 28px;
}

.level-4-lg {
	font-size: 22px;
}

.level-4 {
	font-size: 20px;
}

.level-5 {
	font-size: 18px;
}

.level-6 {
	font-size: 15px;
}

.level-7 {
	font-size: 14px;
}

.level-8 {
	font-size: 12px;
}

.level-10 {
	font-size: 10px;
}

/* .link-hover:hover {
	color: var(--dark-color);
} */

.font-unset {
	font-size: unset;
}

.line-height-normal {
	line-height: normal;
}

.active-status {
	background: #35a802;
	width: 12px;
	height: 12px;
	border-radius: 50%;
}

/* opacity Css  */

.opacity-03 {
	opacity: 0.3;
}

.opacity-05 {
	opacity: 0.5;
}

.opacity-06 {
	opacity: 0.6;
}

/* Font Sizes Here */

/* Custom Video Player */
.video-player {
	position: relative;
}

.video-player .custom-controls {
	position: absolute;
}

/* .video-player .custom-controls button::before {
	content: "";
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	filter: blur(1px);
	background-color: #b16a4797;
	top: 0px;
	left: 0px;
	border-radius: 50%;
} */

.video-player .custom-controls button {
	cursor: pointer;
	color: #402e2e;
	border-radius: 50%;
	height: 118px;
	width: 118px;
	/* background-color: transparent; */
	overflow: hidden;
	background-image: url("../img/play-bg.webp");
	background-position: center;
}

.dark-mode .video-player .custom-controls button {
	color: #402e2e !important;
}

.video-player .custom-controls button i {
	font-size: 58px;
	/* position: relative; */
	/* z-index: 99; */
}

.swiper-scrollbar-drag {
	background-color: var(--secondary-color-bg);
}

/* Custom Video Player End here */
/* .page-heading {
	border-bottom: 1px solid var(--secondary-color);
} */

/* Pagination Css Start here */
.site-pagination .page-item.active .page-link {
	background: var(--extra-color-7);
}

.site-pagination .page-item .page-link {
	height: 40px;
	width: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: var(--dark-color);
	background: var(--extra-color-7);
}

.site-pagination .page-item .page-link.pagination-btn {
	color: var(--body-color);
}

.site-pagination .page-item .page-link.pagination-btn.previous-btn {
	background: #808080;
}

.site-pagination .page-item .page-link.pagination-btn.next-btn {
	background: var(--secondary-color);
}

/* Pagination Css End here */
/* Global Responsive Here */
@media (max-width: 1400px) {
	.level-1 {
		font-size: 50px;
	}

	.level-2 {
		font-size: 34px;
	}

	.level-4-lg {
		font-size: 22px;
	}

	.level-4 {
		font-size: 19px;
	}

	.level-5 {
		font-size: 16px;
	}

	.level-6 {
		font-size: 14px;
	}

	.level-7 {
		font-size: 13px;
	}

	/* .form-control {
		padding: 9px 14px;
	} */

	.icon-badge {
		height: 40px;
		width: 40px;
	}

	.icon-badge.sm {
		height: 27px;
		width: 27px;
	}

	.icon-badge.md {
		height: 31px;
		width: 31px;
		margin: 0px 5px;
	}

	/* .shop-btn {
		height: 155px;
		width: 155px;
		font-size: 19px;
	} */
	.contact-icon {
		flex: 0 0 18%;
	}
}

@media (max-width: 1200px) {
	.level-1 {
		font-size: 43px;
	}

	.level-2 {
		font-size: 30px;
	}

	.level-4-lg {
		font-size: 21px;
	}

	.level-4 {
		font-size: 18px;
	}

	.level-5 {
		font-size: 15px;
	}

	.level-6 {
		font-size: 13px;
	}

	.level-7 {
		font-size: 12px;
	}

	.form-control {
		font-size: 12px;
		/* padding: 8px 12px; */
	}

	.icon-badge {
		height: 32px;
		width: 32px;
	}

	.icon-badge i {
		font-size: 13px;
	}

	.icon-badge.sm {
		height: 25px;
		width: 25px;
	}

	.icon-badge.md {
		height: 29px;
		width: 29px;
	}

	.shop-btn {
		font-size: 11px;
		padding: 7px 20px;
	}

	.section {
		padding: 50px 0px 56px;
	}
}

@media (max-width: 991px) {
	.level-1 {
		font-size: 40px;
	}

	.level-2 {
		font-size: 37px;
	}

	.level-4-lg {
		font-size: 19px;
	}

	.level-4 {
		font-size: 16px;
	}

	.level-5 {
		font-size: 14px;
	}

	.level-6 {
		font-size: 12px;
	}

	.level-7 {
		font-size: 11px;
	}

	.form-control {
		font-size: 11px;
		/* padding: 7px 11px; */
	}

	.icon-badge {
		height: 40px;
		width: 40px;
	}

	.icon-badge.sm {
		height: 23px;
		width: 23px;
	}

	.icon-badge.md {
		height: 27px;
		width: 27px;
	}

	.section {
		padding: 40px 0px 44px;
	}

	.contact-icon {
		height: 45px;
		width: 45px;
		font-size: 20px;
		flex: 0 0 20%;
	}
}

@media (max-width: 768px) {
	.level-1 {
		font-size: 35px;
	}

	.level-2 {
		font-size: 31px;
	}

	.level-4-lg {
		font-size: 18px;
	}

	.level-4 {
		font-size: 15px;
	}

	.level-5 {
		font-size: 13px;
	}

	.level-6 {
		font-size: 11px;
	}

	.level-7 {
		font-size: 11px;
	}

	.icon-badge {
		height: 32px;
		width: 32px;
	}

	.icon-badge.sm {
		height: 21px;
		width: 21px;
	}

	.icon-badge.md {
		height: 25px;
		width: 25px;
	}

	/* .shop-btn {
		height: 110px;
		width: 110px;
		font-size: 14px;
	} */

	.video-player .custom-controls button {
		height: 83px;
		width: 83px;
	}

	.video-player .custom-controls button i {
		font-size: 38px;
	}

	/* .form-control-1 {
		font-size: 11px;
		padding: 7px 25px;
	} */
	.contact-icon {
		flex: unset;
	}
}

@media (max-width: 576px) {
	.level-1 {
		font-size: 32px;
	}

	.level-2 {
		font-size: 27px;
	}

	.level-3-sm {
		font-size: 20px;
	}

	.level-4-lg {
		font-size: 17px;
	}

	.level-4 {
		font-size: 14px;
	}

	.level-5 {
		font-size: 13px;
	}

	.level-6 {
		font-size: 13px;
	}

	.level-7 {
		font-size: 10px;
	}

	.icon-badge {
		height: 30px;
		width: 30px;
	}

	.header-icon-badge {
		height: 38px;
		width: 38px;
	}

	.icon-badge.sm {
		height: 21px;
		width: 21px;
	}

	.icon-badge.md {
		height: 25px;
		width: 25px;
	}

	.shop-btn {
		height: 34px;
        width: 108px;
		font-size: 12px;
	}

	.py-xs-4 {
		padding-top: 1.5rem !important;
		padding-bottom: 1.5rem !important;
	}

	.mb-xs-4 {
		margin-bottom: 1.5rem !important;
	}

	.btn {
		display: block;
		width: 100%;
		padding: 6px 14px !important;
	}

	.form-control-1 {
		padding: 8px 25px;
	}

	.btn-border {
		border-radius: 0px;
	}
	.banner-content-wrapper h1{
		font-size: 20px;
	}
}

/* Global Responsive Here */
/* Dark Mode here */
.form-switch .form-check-input {
	width: 54px;
	height: 32px;
	border-color: #344f28;
}

.form-switch .form-check-input {
	background-size: 23px;
	background-position: center left 3px;
}

.form-switch .form-check-input,
.form-switch .form-check-input:focus {
	background-image: url("data:image/svg+xml,%3Csvg width='33' height='34' viewBox='0 0 33 34' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='16.6416' cy='17.1888' r='16.2137' fill='%23344F28'/%3E%3C/svg%3E");
	box-shadow: 0 0 0 0 transparent;
}

.form-switch .form-check-input:checked,
.form-switch .form-check-input:checked:focus {
	background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="33" height="34" viewBox="0 0 33 34" fill="none"%3E%3Ccircle cx="16.7574" cy="17.1888" r="16.2137" fill="%23E1DDDD"%3E%3C/circle%3E%3C/svg%3E');
	background-position: center right 3px;
	background-color: transparent;
	border-color: #e1dddd;
}

.dark-mode .input-inline-btn i {
	color: var(--body-color);
}

/* .input-inline-btn {
	border-left: 1px solid #848683;
} */

.dark-mode .custom-radio-1:checked~.radio-here:after,
.custom-radio-1:not(:checked)~.radio-here:after {
	width: 10px;
	height: 10px;
	background: var(--secondary-color-bg);
}

.dark-mode .custom-radio-1:checked~.radio-here:before,
.custom-radio-1:not(:checked)~.radio-here:before {
	border: 1px solid var(--secondary-color-bg);
	background: transparent;
}

/* Dark Mode here */
.rounded {
	border-radius: 20px !important;
}