@font-face {
	font-family: 'Outfit';
	src: url('../fonts/Outfit-VariableFont_wght.ttf');
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Outfit',sans-serif;
	text-decoration: none;
}
a {
	text-decoration: none;
}
.header-wrapper {
	width: 100%;
	height: 40px;
	background: rgba(0, 0, 180, 1.0);
}
.header-wrapper {
	width: 100%;
	padding-left: 20px;
	height: 40px;
}
.header-wrapper span {
	color: white;
	line-height: 40px;
	font-size: 14px;
}

.header {
	position: relative;
	height: 150px;
	background: rgba(0, 0, 30, 1.0);
	color: white;
	display: flex;
}
.header img {
	height: 90px;
	margin-top: calc((150px - 90px) / 2);
	margin-left: 40px;
	margin-right: 30px;
}
.header-content {
	height: 150px;
}
.header-content h3 {
	margin-top: 50px;
	font-size: 24px;
	margin-bottom: 0;
}
.header-content h6 {
	font-size: 12px;
	font-style: italic;
}
.card-title {
	font-size: 18px;
}
.card-text {
	font-size: 14px;
}
.footer {
	margin-top: 30px;
	padding: 30px;
	width: 100%;
	height: 0 auto;
	background: rgba(0, 0, 30, 1.0);
}
::-webkit-scrollbar{
  width: 8px;
  height: 0;
}
::-webkit-scrollbar-track{
  background: rgba(0, 0, 0, 0.2);
}
::-webkit-scrollbar-thumb{
  background: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
}
.input-wrap {
	width: 100%;
	height: 35px;
	border: 1px soild rgba(255, 255, 255, 0.8) !important;
	display: flex;
}
.input-wrap input {
	width: calc(100% - 30px);
	height: 30px;
	color: rgba(255, 255, 255, 0.6);
	border: none;
	outline: none;
	margin-top: 2px;
	padding-left: 10px;
	padding-right: 10px;
	background: transparent;
}
.icon {
	height: 100%;
	width: 30px;
	background: rgba(0, 0, 120, 1.0);
}
@media screen and ( max-width:480px ) {
	.header img {
		height: 70px !important;
		margin-top: calc((150px - 70px) / 2);
	}
	.header-content h3 {
		font-size: 18px;
		margin-top: 55px;
	}
}
.bold {
	font-weight: bold;
}
