/*
Theme Name 		: Keshv | Multiple Business Services & IT Solutions Bootstrap Template
Author 			: Teaching Web
Version 		: 1.0 (Updated)
File-name 		: Color.css
*//*---------------------------------------------------------------------------*/

/* Custom Fonts start*/
@font-face{
	font-family: keshv-font;
	src: url("../webfonts/quick.otf");
	/*(Font Name : Quicksand Book)*/
}
.font-arial{
	font-family: arial !important;
}

/* Common CSS start*/
:root{ 
	/*Choice is Yours*/
	/* Variable for Entire Page Theme-Color */
	/*If You want one color Theme so PLease Enter Both Colors are Same*/
	--color1: #DC3545;
	--color2: #00008B;	
}
.keshv-bg-gradient{
	background: linear-gradient(45deg,var(--color1),var(--color2)) !important;
	background: -webkit-linear-gradient(45deg,var(--color1),var(--color2)) !important;
}
.keshv-text-gradient{
	background: -webkit-linear-gradient(45deg,var(--color1),var(--color2)) !important;
	-webkit-background-clip: text !important;
  	-webkit-text-fill-color: transparent !important;
}

/* selection area color */
::selection{
	color: white !important;
	background: var(--color1) !important;
}

/* aerrow spinner hide Firefox, Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
input[type=number] {
	-moz-appearance: textfield;
}


/*Back to Top button Css start*/
.scroll-top{
	position: fixed;
	right: 20px;
	bottom: 20px;
	opacity: 0.0;
	background: white;
	box-shadow: 0px 0px 20px #c6c6c6;
	z-index: 10;
	border-radius: 100%;
}
.scroll-top a i{
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.scroll-top-arrow{
	opacity: 1.0;
}
/*Back to Top button Css end*/