/*
Theme Name : RadhaKrisn - Resume/CV One Page Bootstrap 5 Template
Author : Teaching Web
Version : 1.0
File name : common.css
*/

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: metro;
	transition: 0.5s;
	outline: none !important;
	text-decoration: none !important;
	user-select: none;
}

/*custom fonts start*/
@font-face{
	font-family: metro;
	src: url('../webfonts/metropolis.otf');
}
.metro-font{
	font-family: metro !important;
}

@font-face{
	font-family: lemon;
	src: url('../webfonts/lemon.otf');
}
.lemon-font{
	font-family: lemon !important;
}

@font-face{
	font-family: pecita;
	src: url('../webfonts/pecita.otf');
}
.pecita-font{
	font-family: pecita !important;
}
/*custom fonts end*/

/*root variable start*/
:root{
	--color: #253A69; /*#253A69 default color*/
}
/*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*/