:root {
	--border: rgb(3, 169, 244);
	--g1: rgb(51, 102, 153);
	--g2: rgb(51, 102, 153);
	--g3: rgb(0, 0, 0);
}

body {
	background-color: #000;
	height: 100vh;
	margin: 0px;
	padding: 0px;
}

a, a:active, a:hover, a:visited {
	color: white;
}

.banner {
	height: 150px;
	margin-bottom:20px;
}

#image {
	position:absolute;
	top:0px;
	left:50%;
	transform:translate(-50%,0%);
	height:150px;
}

.cards {
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	height:80vmin;
}

.card {
	aspect-ratio: 1 / 1.3;
	border: 0.5vmin solid var(--border);
	position: relative;
	width: 56vmin;
	margin:0px 10px 20px 10px;
}

.card:hover:before {
	background-position: 100% 100%;
}

.card:hover > .card-content {
	background-position: -10% 0%;
}

.card:hover > .card-icon {
	color: white; 
}

.card:before {
	background: linear-gradient(
		130deg, 
		transparent 0% 10%, 
		var(--g1) 66%, 
		var(--g3) 100%
	);
	background-position: 0% 0%;
	background-size: 300% 300%;
	content: "";
	height: 100%;
	left: 0px;
	pointer-events: none;
	position: absolute;
	top: 0px;
	transition: background-position 350ms ease, transform 350ms ease;
	width: 100%;
	z-index: 1;
}

.card-content {
	background-image: radial-gradient(
		rgba(255, 255, 255, 0.2) 8%, 
		transparent 8%
	);
	background-position: 0% 0%;
	background-size: 5vmin 5vmin;
	height: calc(100% - 10vmin);
	padding: 5vmin;
	position: relative;
	transition: background-position 350ms ease;
	width: calc(100% - 10vmin);
	z-index: 2;
}

h3, p {
	color: white;
	font-family: "Anek Latin", sans-serif;
	font-weight: 400;
	margin: 0px;
}

h3 {
	font-size: 6vmin;
}

p {
	font-size: 3vmin;
	margin-top: 2vmin;
}

.card-icon {
	bottom: 0px;
	color: rgba(255, 255, 255, 0.5);
	font-size: 7vmin;
	left: 0px;
	margin: 5vmin;
	position: absolute;
	transition: color 250ms ease;
	z-index: 2;
}

.card-link {
	bottom: 20px;
	right: 0px;
	color: rgba(255, 255, 255, 0.5);
	font-size: 3vmin;
	margin: 5vmin;
	position: absolute;
	transition: color 250ms ease;
	z-index: 2;
	color: white;
	font-family: "Anek Latin", sans-serif;
	font-weight: 400;
}

.disclaimer {
	bottom: 0px;
	font-size: 2vmin;
	right: 0px;
	position: absolute;
	transition: color 250ms ease;
	z-index: 3;
	color: white;
	font-family: "Anek Latin", sans-serif;
	margin: 7.5vmin 5vmin;
}

.availability-segment {
	bottom: 5px;
	right: 0px;
	color: rgba(255, 255, 255, 0.5);
	font-size: 2vmin;
	margin: 5vmin;
	position: absolute;
	transition: color 250ms ease;
	z-index: 2;
	color: white;
	font-family: "Anek Latin", sans-serif;
	font-weight: 400;	
}