@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

body {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	background-color: #F9F9F9;
	font-family: "DM Sans", sans-serif;
}

@font-face {
	font-family: 'Satoshi';
	src: url('../font/Satoshi_Complete/Fonts/OTF/Satoshi-Regular.otf') format('opentype');
}


@font-face {
	font-family: 'Satoshi-Variable';
	src: url('../font/Satoshi_Complete/Fonts/TTF/Satoshi-Variable.ttf') format('opentype');
}

.font-1 {
	font-family: "Lato", sans-serif;
}


.clip-faq {
	clip-path: polygon(11% 0, 80% 0%, 100% 0, 100% 100%, 83% 100%, 0 100%, 0 12%, 11% 12%);
}

/* Small screen adjustment */
@media (max-width: 768px) {
	.clip-faq {
		clip-path: polygon(30% 0, 80% 0%, 100% 0, 100% 100%, 83% 100%, 0 100%, 0 5%, 30% 5%);
	}
}



/* -------------------------------------------start-----  Custom Scrollbar   */
.custom-scrollbar::-webkit-scrollbar,
.custom-scrollbar_faq::-webkit-scrollbar {
	width: 6px;
	height: 6px;
	/* for horizontal scrollbar */
}

.custom-scrollbar::-webkit-scrollbar-thumb {
	background-color: #1F53A6;
	border-radius: 999px;
	/* fully rounded ends */
}

.custom-scrollbar::-webkit-scrollbar-track {
	background-color: #fcffff;
	border-radius: 999px;
}







/* Email input styling */
.footer_form input[type="email"] {
	flex: 1;
	font-size: 14px;
	font-weight: 600;
	font-family: 'DM Sans', sans-serif;
	background-color: transparent;
	border: none;
	outline: none;
	padding: 12px 24px;
	color: #6b7280;
}

.footer_form input[type="email"]::placeholder {
	color: #9ca3af;
}

/* ---------------------------------- Submit button styling */
.footer_form .cf7-submit-button {
	background-color: #1F53A6;
	color: white;
	border: none;
	border-radius: 9999px;
	padding: 12px 24px;
	font-size: 12px;
	font-weight: 500;
	box-shadow: 0px 3.52px 17.6px 0px rgba(0, 0, 0, 0.25);
	cursor: pointer;
}

@media (min-width: 768px) {
	.footer_form .cf7-submit-button {
		font-size: 16px;
		padding: 10px 24px;
	}
}

@media (min-width: 1280px) {
	.footer_form .cf7-submit-button {
		font-size: 20px;
		padding: 8px 24px;
	}
}
/* 
.wpcf7-spinner {
	display: none;
} */

.placeholder-wrapper {
	position: absolute;
	top: 50%;
	left: 1rem;
	transform: translateY(-50%);
	color: #ababab;
	pointer-events: none;
	font-size: 1.1rem;
}

.required.wpcf7-not-valid + .placeholder-wrapper {
	top: 17%;
}

.required-asterisk {
	color: red;
}

/* ----------------------------------------- faq */
.plusminus::before,
.plusminus::after {
	content: "";
	display: block;
	background-color: #000;
	position: absolute;
	top: 50%;
	left: 0;
	transition: .35s;
	width: 100%;
	height: 2px;
}

.plusminus::before {
	transform: translateY(-50%);
}

.plusminus::after {
	transform: translateY(-50%) rotate(90deg);
}

.plusminus.active::before {
	transform: translateY(-50%) rotate(-90deg);
	opacity: 0;
}

.plusminus.active::after {
	transform: translateY(-50%) rotate(0);
}

.def-slider {
	position: relative;
}

.def-slider .owl-nav {
	position: absolute;
	top: 35%;
	width: 100%;
	/* Yeh ensure karega ke buttons full width pe aligned ho */
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
}

.def-slider .owl-prev,
.owl-next {
	font-size: 14px !important;
	height: 30px;
	width: 30px;
	border-radius: 50px;
}



/* ------------------------------------------------------------------ Coming Soon  */
.coming-soon {
	position: relative;
	min-width: 102px;
}

.coming-soon:after {
	content: "Coming Soon";
	position: absolute;
	opacity: 0;
	visibility: hidden;
	left: 0;
	top: 0;
	z-index: 3;
	width: 100%;
	height: 100%;
	background-color: #1F53A6;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
	line-height: 1.2;
}

.coming-soon:hover:after {
	opacity: 1;
	visibility: visible;
}


.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next{
	background-color: #1F53A6;
}
.owl-carousel .owl-nav button.owl-prev.disabled,
.owl-carousel .owl-nav button.owl-next.disabled{
	background-color: transparent;
	border: 1px solid #194488;
	cursor: default;
}