/*
Theme Name : Dvarka - Startup Business Landing Page Template
Author : Logshiv
Version : 1.0
File name : common.css
*/

body{
	counter-reset: my-count;
}
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: ubuntu;
	transition: 0.5s;
	outline: none !important;
	text-decoration: none !important;
}

/*custom fonts start*/
@font-face{
	font-family: spartan;
	src: url('../webfonts/spartan.ttf');
}
@font-face{
	font-family: ubuntu;
	src: url('../webfonts/ubuntu.ttf');
}
.spartan-font{
	font-family: spartan !important;
}
.ubuntu-font{
	font-family: ubuntu !important;
}
/*custom fonts end*/

/*root variable start*/
:root{
	--color: #E5164C;
}
/*root variable end*/

/*custom css start*/
.bg-color{
	background-color : var(--color) !important;
}
.text-color{
	color : var(--color) !important;
}
.m-10{
	margin-top: 10px !important;
}
.m-20{
	margin-top: 20px !important;
}
.m-30{
	margin-top: 30px !important;
}
.m-40{
	margin-top: 40px !important;
}
.m-50{
	margin-top: 50px !important;
}
/*custom css end*/

/*custom selection*/
::selection{
	background: var(--color) !important;
	color: white !important;
}
/*custom selection*/

/*custom scroll bar start*/
::-webkit-scrollbar{
	width: 8px !important;
}
::-webkit-scrollbar-thumb{
	background: var(--color) !important;
	border-radius: 15px;
}
::-webkit-scrollbar-track{
	background: #EEEEEE !important;
}
::-moz-scrollbar{
	width: 14px !important;
}
/*custom scroll bar end*/