@charset "utf-8";
/*############# CSS Document ################ */
*{
	padding:0px;
	margin:0px;
	box-sizing:border-box;
}

body{
	font-family:r-light;
}
body,html{
	scroll-behavior:smooth;
}

/*############# Font Setup ################ */

@font-face{
	font-family:p-dark;
	src:url(../fonts/Poppins/Poppins-SemiBold.ttf);
}
@font-face{
	font-family:p-light;
	src:url(../fonts/Poppins/Poppins-Regular.ttf);
}

@font-face{
	font-family:r-dark;
	src:url(../fonts/Roboto/Roboto-Medium.ttf);
}

@font-face{
	font-family:r-light;
	src:url(../fonts/Roboto/Roboto-Regular.ttf);
}

.p-dark{
	font-family:p-dark;
}
.p-light{
	font-family:p-light;
}

.r-dark{
	font-family:r-dark;
}

.r-light{
	font-family:r-light;
}

/*############# Color Setup ################ */
.bgBlue{
	background-color:#0465C7;
}
.txtBlue{
	color:#0465C7;
}
.bgLight{
	background-color:#E8E9F3;
}
.txtLight{
	color:#E8E9F3;
}
.bgDark{
	background-color:#252323;
}
.txtDark{
	color:#252323;
}

/* ############# BUTTON SETUP ########### */
.btn-blue
{
	color:#fff;
	background-color:#0465C7;
	border-color:#007bff;
}
.btn-blue:hover
{
	color:#fff;
	background-color:#024f9e;
	border-color:#0062cc;
}
.btn-blue.focus,.btn-blue:focus
{
	color:#fff;
	background-color:#024f9e;
	border-color:#0062cc;
	box-shadow:0 0 0 .2rem rgba(38,143,255,.5);
}

/* ################### LOGO ################# */
.logo{
	height:42px;	
}


/* ################### LOGO ################# */

.jumbotron img{
	width:100%;
}
.jumbotron h1{
	font-size:42px;
}



