﻿:root {
	/*Colors Start*/
	/*<-==========================================->*/
	--primary: 0, 183, 170;
	--secondary: #aaaaaa;
	--gray: #e2e2e3;
	--pink: #d71e66;
	--green: #00b7aa;
	--orange: #ff6e54;
	--red: #DC2525;
	--purple: #9609CA;
	--alpha5-dark: rgba(0, 0, 0, 0.5);
	--alpha7-dark: rgba(0, 0, 0, 0.7);
	--BB-light-purple: #a1adc4;
	--BB-dark-purple: #7a87a3;
	--light: #ffffff;
	--dark: #000000;
	--danger: #ff0000;
	/*Colors End*/
	/*<-==========================================->*/
	/*Font size Start*/
	/*<-==========================================->*/
	--fs-xl-large: 40px;
	--fs-large: 23px;
	--fs-medium: 18px;
	--fs-normal: 15px;
	--fs-small: 14px;
	--fs-s-small: 12px;
	/*Font Size End*/
	/*<-==========================================->*/
	/*Font weight Start*/
	/*<-==========================================->*/
	--fw-400: 400;
	--fw-600: 600;
	--fw-700: 700;
	--fw-900: 900;
	/*Font weight End*/
	/*<-==========================================->*/
}
/* <-==========================-> */
/* CSS REST */
/* Box sizing rules */
*,
*::before,
*::after {
	box-sizing: border-box;
	touch-action: manipulation;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
	list-style: none;
}

/* Set core root defaults */
html:focus-within {
	scroll-behavior: smooth;
}

/* Set core body defaults */
body {
	min-height: 100vh;
	text-rendering: optimizeSpeed;
	line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
	text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
	max-width: 100%;
	display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
	font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
	html:focus-within {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

p,
label,
span {
	font-size: 15px;
}

/* CSS REST End*/
/* <-==========================-> */

@font-face {
	font-family: "brandon-grotesque";
	font-style: normal;
	font-weight: 400;
}

html {
	font-size: 62.5%;
}

body {
	font-family: brandon-grotesque, sans-serif;
	font-weight: var(--fw-400);
	background-color: var(--off-White);
	line-height: 1.6;
	color: var(--dark);
	height: 100%;
	margin: 0;
	width: 100%;
}

form {
	font-family: brandon-grotesque, sans-serif;
	font-weight: var(--fw-400);
	background-color: var(--off-White);
	line-height: 1.6;
	color: var(--dark);
	height: 100%;
	margin: 0;
	width: 100%;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	-webkit-flex-direction: column;
	position: relative;
	min-height: 100vh;
}

h1,
h2,
h3 {
	line-height: 1.1;
}

h2 {
	font-size: var(--fs-large);
}

/*Loader*/
/*<-==========================================->*/

#loader {
	position: absolute;
	top: calc(50% - 20px);
	left: calc(50% - 20px);
	z-index: 100;
}

@keyframes loader {
	0% {
		left: -100px;
	}

	100% {
		left: 110%;
	}
}

#box {
	width: 50px;
	height: 50px;
	background: #fff;
	background-image: radial-gradient(var(--green) 50%,rgb(0, 183, 170) 100%);
	animation: animate 0.5s linear infinite;
	position: absolute;
	z-index: 1000;
	top: 0;
	left: 0;
	border-radius: 3px;
}

@keyframes animate {
	17% {
		border-bottom-right-radius: 3px;
	}

	25% {
		transform: translateY(9px) rotate(22.5deg);
	}

	50% {
		transform: translateY(18px) scale(1, 0.9) rotate(45deg);
		border-bottom-right-radius: 40px;
	}

	75% {
		transform: translateY(9px) rotate(67.5deg);
	}

	100% {
		transform: translateY(0) rotate(90deg);
	}
}

#shadow {
	width: 50px;
	height: 5px;
	background: #000;
	opacity: 0.1;
	position: absolute;
	top: 59px;
	left: 0;
	border-radius: 50%;
	animation: shadow 0.5s linear infinite;
}

@keyframes shadow {
	50% {
		transform: scale(1.2, 1);
	}
}
.LoaderWrap {
	position: fixed;
	background-color: rgba(0, 0, 0, 0.8);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 100000000000;
}

.load_Text {
	position: absolute;
	top: 56%;
	left: 0;
	width: 100%;
	text-align: center;
	z-index: 100;
	margin-top:2rem;
	font-size: 2rem;
	color: #fff;
	font-weight: 600;
}
/*Loader*/
/*<-==========================================->*/
/*Media Queries Start*/
/*<-==========================================->*/

@media (min-width: 768px) {
}

@media screen and (min-width: 992px) {
	html {
		font-size: 60%;
	}
}

@media (max-width: 600px) {
	
}

@media (max-width: 360px) {
	html {
		font-size: 49%;
	}
}

@media (max-width: 285px) {
	html {
		font-size: 45%;
	}
}

/*Media Queries End*/
/*<-==========================================->*/
