@import url('https://fonts.googleapis.com/css2?family=Krub:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
:root {
	--color-body: #fff;
	--color-text-primary: #212529;
	--color-text-description: #868E96;
	--color-text-light: #B8BDC1;
	--color-text-lighter: #CED4DA;
	--color-info: #E9ECEF;
	--color-info-dark: #DEE2E6;
	--color-info-light: #F1F3F5;
	--color-form-border: #CED4DA;
	--color-form-active-shadow: #ebedf0;
	--color-form-placeholder: #ADB5BD;
	--color-primary: #0526df;
	--color-primary-dark: #D81D33;
	--color-primary-lighter: #FFF4F6;
	--color-secondary: #3BC9DB;
	--color-secondary-dark: #15AABF;
	--color-secondary-lighter: #E3FAFC;
	--color-success: #12B886;
	--color-success-dark: #099268;
	--color-success-lighter: #E6FCF5;
	--color-danger: #F03E3E;
	--color-danger-dark: #C92A2A;
	--color-danger-light: #FFF5F5;
	--color-warning: #FD7E14;
	--color-warning-dark: #E8590C;
	--color-warning-lighter: #FFF4E6;
	--color-review: #FFD43B;
	--color-review-dark: #FCC419;
	--color-review-lighter: #FFF9DB;
	--color-gradient-1: linear-gradient(45deg, rgb(239, 35, 60) 0%, rgb(244, 113, 3) 100%);
	/* fonts  */
	/* --theme-primary-font: "Krub", sans-serif;
	--theme-secondary-font: "Krub", sans-serif; */
	--theme-primary-font: "Rubik";
	--theme-secondary-font: "Rubik";
	--theme-font-size: 1rem;
	--theme-font-weight: 400;
	--theme-letter-spacing: -0.03px;
	--theme-container: 1280px;
	--theme-gutter: 15px;
	--theme-theme-radius-xsmall: 6px;
	--theme-theme-radius-small: 8px;
	--theme-theme-radius-base: 12px;
	--theme-theme-radius-large: 18px;
	--theme-form-font-size: 15px;
	--theme-form-font-weight: 500;
	--theme-form-radius: 12px;
	--theme-form-height: 42px;
}


body {
	font-family: var(--theme-primary-font);
	font-size: var(--theme-font-size);
	font-weight: var(--theme-font-weight);
	-webkit-font-feature-settings: "kern";
	font-feature-settings: "kern";
	letter-spacing: var(--theme-letter-spacing);
	color: var(--color-text-primary);
	background-color: var(--color-body);
	position: relative;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--theme-primary-font);
	font-weight: 700;
	letter-spacing: 0;
}

/* body.dark-theme {
	--color-card: #1E293B;
	--color-input: #141B2D;
	--color-text: #F3F4F6;
	--color-placeholder: #A3B6DC;
	--color-border: #334155;
	background: var(--color-card);
	background-image: radial-gradient(circle at 15% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 35%), radial-gradient(circle at 85% 30%, rgba(139, 92, 246, 0.15) 0%, transparent 35%), radial-gradient(circle at 50% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 40%);
} */

* {
	margin: 0;
	padding: 0;
	outline: none;
}

a {
	text-decoration: none;
	color: #2196f3;
	display: inline-block;
}

a:hover {
	text-decoration: none;
}

.button {
	padding: 9px 30px;
	background: #2196f3;
	color: #fff;
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	border: 2px solid #2196f3;
	border-radius: 4px;
	transition: 0.5s all ease;
}

.button:hover {
	background: #fff;
	color: #2196f3;
}

.title {
	font-size: 28px;
	font-weight: 500;
	color: #444;
}

ul {
	list-style-type: none;
	margin-bottom: 0px;
}

img {
	width: 100%;
}

input,
select,
textarea {
	outline: none;
}

.container {
	width: 100%;
	padding: 0px 15px;
	margin-right: auto;
	margin-left: auto;
}

.container-fluid {
	width: 95%;
	padding: 0px 15px;
	margin-right: auto;
	margin-left: auto;
}

.relative {
	position: relative;
}

.absolute {
	position: absolute;
}

.content-center {
	display: grid;
	place-content: center;
}

.d-flex {
	display: flex;
}
.d-none{
	display: none;
}
.flex-between {
	display: flex;
	justify-content: space-between;
}

.flex-around {
	display: flex;
	justify-content: space-around;
}

.flex-between-center {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.flex-around-center {
	display: flex;
	justify-content: space-around;
	align-items: center;
}
.flex-wrap {
	display: flex;
	flex-wrap: wrap;
}

@media max-width(480px) {
	.flex-column {
		display: flex;
		flex-direction: column;
	}

	.full {
		width: 100%;
	}
}

.gp1{
	gap: 1%;
}
.gp2{
	gap: 2%;
}
.gp3{
	gap: 3%;
}
.gp4{
	gap: 4%;
}
.d-block {
	display: block;
}

.align-center {
	display: flex;
	align-items: center;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.text-white {
	color: #fff;
}

.text-dark {
	color: #444;
}

.text-success {
	color: #4caf50;
}

.text-danger {
	color: #e91e63;
}

.text-primary {
	color: #2196f3;
}

.text-secondery {
	color: #009688;
}

.text-warning {
	color: #ff9800;
}

/*****Margin******/

.mt-1 {
	margin-top: 5px;
}

.mt-2 {
	margin-top: 10px;
}

.mt-3 {
	margin-top: 15px;
}

.mt-4 {
	margin-top: 20px;
}

.mt-5 {
	margin-top: 25px;
}

.mt-6 {
	margin-top: 40px;
}

.mb-1 {
	margin-bottom: 5px;
}

.mb-2 {
	margin-bottom: 10px;
}

.mb-3 {
	margin-bottom: 15px;
}

.mb-4 {
	margin-bottom: 20px;
}

.mb-5 {
	margin-bottom: 25px;
}

.mb-6 {
	margin-bottom: 40px;
}

.ml-1 {
	margin-left: 5px;
}

.ml-2 {
	margin-left: 10px;
}

.ml-3 {
	margin-left: 15px;
}

.ml-4 {
	margin-left: 20px;
}

.ml-5 {
	margin-left: 25px;
}

.ml-6 {
	margin-left: 40px;
}

.mr-1 {
	margin-right: 5px;
}

.mr-2 {
	margin-right: 10px;
}

.mr-3 {
	margin-right: 15px;
}

.mr-4 {
	margin-right: 20px;
}

.mr-5 {
	margin-right: 25px;
}

.mr-6 {
	margin-right: 40px;
}



/***** Padding ******/

.pt-1 {
	padding-top: 5px;
}

.pt-2 {
	padding-top: 10px;
}

.pt-3 {
	padding-top: 15px;
}

.pt-4 {
	padding-top: 20px;
}

.pt-5 {
	padding-top: 25px;
}

.pt-6 {
	padding-top: 40px;
}

.pb-1 {
	padding-bottom: 5px;
}

.pb-2 {
	padding-bottom: 10px;
}

.pb-3 {
	padding-bottom: 15px;
}

.pb-4 {
	padding-bottom: 20px;
}

.pb-5 {
	padding-bottom: 25px;
}

.pb-6 {
	padding-bottom: 40px;
}

.pl-1 {
	padding-left: 5px;
}

.pl-2 {
	padding-left: 10px;
}

.pl-3 {
	padding-left: 15px;
}

.pl-4 {
	padding-left: 20px;
}

.pl-5 {
	padding-left: 25px;
}

.pl-6 {
	padding-left: 40px;
}

.pr-1 {
	padding-right: 5px;
}

.pr-2 {
	padding-right: 10px;
}

.pr-3 {
	padding-right: 15px;
}

.pr-4 {
	padding-right: 20px;
}

.pr-5 {
	padding-right: 25px;
}

.pr-6 {
	padding-right: 40px;
}


/**** mx/ my****/
.mx-1 {
	margin: 0px 5px;
}

.mx-2 {
	margin: 0px 10px;
}

.mx-3 {
	margin: 0px 15px;
}

.mx-4 {
	margin: 0px 20px;
}

.mx-5 {
	margin: 0px 25px;
}

.mx-6 {
	margin: 0px 40px;
}

.my-1 {
	margin: 5px 0px;
}

.my-2 {
	margin: 10px 0px;
}

.my-3 {
	margin: 15px 0px;
}

.my-4 {
	margin: 20px 0px;
}

.my-5 {
	margin: 25px 0px;
}

.my-6 {
	margin: 40px 0px;
}


/*****px /py ******/

.px-1 {
	padding: 0px 5px;
}

.px-2 {
	padding: 0px 10px;
}

.px-3 {
	padding: 0px 15px;
}

.px-4 {
	padding: 0px 20px;
}

.px-5 {
	padding: 0px 25px;
}

.px-6 {
	padding: 0px 40px;
}

.py-1 {
	padding: 5px 0px;
}

.py-2 {
	padding: 10px 0px;
}

.py-3 {
	padding: 15px 0px;
}

.py-4 {
	padding: 20px 0px;
}

.py-5 {
	padding: 25px 0px;
}

.py-6 {
	padding: 40px 0px;
}