:root {
	--font-color-darkest: #000;
	--font-color-darker: #221F20;
	--font-color-dark: #555253;
	--sidebar-width: 48px;
	--darkest-background: #221F20;
	--darker-background: #4C4C4C;
	--border-gold: #FFCC01;
}

* {
	font-family: 'IBM Plex Sans', sans-serif;
	color: var(--font-color-darkest);
	user-select: none;
	font-weight: 400;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-color: #F7F7F7;
	height: 100%;
	width: 100vw;
	overflow-y: auto;
	overflow-x: hidden !important;
}

a {
	text-decoration: none;
}

.navbar {
	background-color: var(--darkest-background);
	position: fixed;
	align-items: center;
	top: 0px;
	left: 0px;
	right: 0px;
	height: 49px;
	z-index: 10;
}

.navbar .title {
	transition: width ease 0.5s, font-size 0.5s;
	white-space: nowrap;
	line-height: 48px;
	width: 100%;
	text-align: center;
	margin-left: 0px;
	font-style: normal;
	font-weight: 300;
	font-size: 22px;
	letter-spacing: 1.4px;
	color: #FFFFFF;
	opacity: 1;   
}


.navbar .login-container {
	position: absolute;
	display: flex;
	right: 10px;
	top: 8px;
	background: none;
	background-color: none;
	border: solid 1px #fff;
	border-radius: 3px;
}

.navbar .login-container a {
	padding: 4px 24px;
}

.navbar .login-container a {
	font-size: 14px;
	color: #fff;
}
.navbar .login-container:hover {
	background: #4D4D4D 0% 0% no-repeat padding-box;
	border: 1px solid #FFCC01;
}

.banner {
	padding: 0px;
	position: absolute;
	overflow: hidden;
	text-align: center;
	top: 46px;
	left: 0px;
	right: 0px;
	height: 280px;
	opacity: 1;
	z-index: -1;
}

.banner img {
	position: absolute;
	left: -3px;
	width: calc(100vw + 6px);
	height: 275px;
	object-fit: cover;
	outline: none;
	z-index: -1;
}

.banner .title {
	position: relative;
	text-align: center;
	margin-top: 100px;
	color: #FFFFFF;
	font-size: 32px;
	transition: font-size 0.7s;
	letter-spacing: 1.7px;
}

.banner button.feedback {
	position: absolute;
	right: 20px;
	margin-top: 60px;
	width: 260px;
	height: 40px;
	line-height: 0px;
	padding: 15px;
	color: #FFFFFF;
	border: 1px solid #FFFFFF;
	border-radius: 3px;
	background-color: none;
	background: none;
}
.banner button.feedback:hover {
	background: #4D4D4D 0% 0% no-repeat padding-box;
	border: 1px solid #FFCC01;
}

.banner .yellow-line {
	position: absolute;
	background-color: #FFCC01;
	bottom: 5px;
	left: 0px;
	right: -10px;
	height: 2px;
}

.banner .yellow-bar {
	position: absolute;
	border: #FFCC01 1px solid;
	background-color: #ffcc01;
	border-radius: 2px;
	height: 8px;
	width: 53px;
	left: 25%;
	bottom: 2px;
}

.banner .yellow-bar,
.card-container .cards-row-title {
	transition: ease all 0.2s;
}


.card-container {
	margin: 60px auto;
	position: absolute;
	display: flex;
	justify-content: center;
	gap: 40px;
	height: auto;
	top: calc(280px + 48px);
	left: 0px;
	right: 0px;
}

.card-container .cards-row-title {
	white-space: nowrap;
	position: absolute;
	font: normal normal medium 'IBM Plex Sans';
	font-size: 18px;
	letter-spacing: 0.9px;
	color: #4C4C4C;
	opacity: 1;
	top: -20px;
	text-align: left;
	left: 25%;
}


.card-container .card-border {
	margin-top: 30px;
	padding: 1px;
	height: 394px;
	width: 400px;
	border-radius: 4px;
}

.card-container .card {
	background-color: #fff;
	position: relative;
	padding: 40px 20px 0px 20px;
	text-align: center;
	height: 392px;
	width: 398px;
	box-shadow: 0px 3px 6px #2727270D;
	border: 1px solid #EBEBEB;
	border-radius: 4px;
	opacity: 1;
}
.card-container .card-border:hover {
	outline: 2px solid #ffcc01;
}

.card-container .card .title {
	letter-spacing: 1px;
	color: #4C4C4C;
	opacity: 1;
}
.card-container .card .icon {
	margin: 0 auto;
	padding: 20px;
	height: 140px;
}
/* This span helps to vertically center the img/svg */
.card-container .card .icon .helper {
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}
.card-container .card .icon img {
	vertical-align: middle;

}

.card-container .card .description {
	font-size: 14px;
	color: #4C4C4C;
	height: 100px;
	text-align: left;
	font: normal normal normal 14px/24px 'IBM Plex Sans';
	letter-spacing: 0.7px;
}
.card-container .card button {
	margin-top: 36px;
	width: 242px;
	height: 40px;
	letter-spacing: 0.8px;
	color: #221F20;
	background: #ffcc01;
	border: solid 1px #ffcc01;
	border-radius: 3px;
	opacity: 1;
	padding-top: 10px;
	padding-left: 4px;
	padding-right: 4px;
	padding-bottom: 7px;

}


@media (max-width: 1000px) {
	.navbar .title {
		transition: width ease 0.5s, font-size 0.5s;
		width: 0px;
		line-height: 48px;
		white-space: nowrap;
		font-size: 14px;
		margin-left: 8px;
	}
	.banner .title {
		transition: font-size 0.7s;
		font-size: 20px;
	}
	.banner .yellow-bar,
	.card-container .cards-row-title {
		left: 5%;
	}

	.card-container {
		flex-direction: column;
		justify-content: start;
		align-items: center;
		height: calc(100% + 200px);
	}
}



/* Loading icon */
.loading-cover {
	z-index: 9;
	position: fixed;
	inset: 0 0 0 0;
	background-color: #221f20;
}

/* center vertical and horizontal*/
.lds-dual-ring {
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/*actual rotating rings*/
.lds-dual-ring {
	display: inline-block;
	width: 80px;
	height: 80px;
}
.lds-dual-ring:after {
	content: " ";
	display: block;
	width: 64px;
	height: 64px;
	margin: 8px;
	border-radius: 50%;
	border: 6px solid #fff;
	border-color: #fff transparent #fff transparent;
	animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
