/* DA' BOOM SIM  | Style Sheet | Pease Technology 2024 */
html,
body {
	color: #eee;
	height: 100%;
	margin: 0;
	max-width: 100vw;
	overflow-x: hidden;
	font-family: 'Segoe UI', Tahoma, Verdana, sans-serif;
	font-size: 14px;
	cursor: default;
}

a {
	text-decoration: none;
}

a:focus, a:visited, a:active {
	outline: none;
}

div {
	border-radius: 3px;
}

.bgoverlay {
	display: block;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	/* background-color: rgba(1, 0, 21, 0.5); */
	/* background-image: radial-gradient(rgba(2, 37, 97, 0.25) 10%, rgba(0, 3, 21, 0.9) 90%); */
	z-index: 2;
}

video {
	min-width: 100%;
	min-height: 100%;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 1;
}

.container {
	display: flex;
	flex-direction: column;
	width: 100vw;
	position: relative;
	align-items: center;
	padding-bottom: 20px;
	z-index: 2;
}

.logo {
	margin: 2% 0 1% 0;
	padding: 1%;
}

.logo img {
	width: 12vw;
}

@media only screen and (max-width: 820px) {
	.logo img {
		width: 40vw;
	}
}

@media only screen and (max-height: 640px) {
	.logo img {
		width: 20vw;
	}
}

.content {
	display: flex;
	flex-direction: column;
	width: 80vw;
	max-width: 1280px;
	align-items: center;
}

.bannertext {
	opacity:0;
	text-align: center;
	font-size: calc(8px + 2.75vw);
	font-weight: 1000;
	/* background-image: linear-gradient(90deg, #ddd, #535353); */
	text-shadow: 2px 2px 18px #222;
	margin: 0 0 2% 0;
	letter-spacing: 0px;
	animation: hellofade 2s ease-in;
	animation-delay: 0.5s;
	animation-fill-mode: forwards;
	/* -webkit-background-clip: text;
	-webkit-text-fill-color: transparent; */
}

.request {
	opacity:0;
	color: #ddd;
	border: 1px solid #dddddd;
	background-color: #c1900b7a;
	border-radius: 12px;
	text-align: center;
	padding: 18px 24px;
	font-size: 18px;
	font-weight: 600;
	transition: all 0.3s ease-in-out;
	margin: 4vh 0 1% 0;
	cursor: pointer;
	text-shadow: 2px 2px 4px #222;
	animation: hellofade 2s ease-in;
	animation-delay: 1s;
	animation-fill-mode: forwards;
}

.request:hover {
	background-color: #F4B508DE;
	border-radius: 40px;
}

.info {
	opacity:0;
	background-color: rgba(0, 0, 0, 0.66);
	margin-top: 6vh;
	font-size: calc(12px + 0.5vw);
	padding: 10px 10px;
	text-align: center;
	width: calc(100% - 44px);
	line-height: 30px;
	border: 1px solid #F4B5085D;
	animation: hellofade 2s ease-in;
	animation-delay: 1s;
	animation-fill-mode: forwards;
}

.cardrow {
	opacity:0;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	animation: hellofade 2s ease-in;
	animation-delay: 1s;
	animation-fill-mode: forwards;
}

.card {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	background-color: rgba(0, 0, 0, 0.66);
	margin: 1.5vh 10px 0vh 10px;
	overflow: hidden;
	box-shadow: 2px 2px 6px black;
	width: 30%;
	height: 22vh;
}

@media only screen and (max-width: 1000px) {
	.card {
		width: 100%;
		height: 15%;
	}
}

.cardImage {
	position: relative;
	text-align: center;
	color: #22222200;
	font-size: 28px;
	font-weight: 800;
	text-shadow: 2px 2px 2px #22222200;
	transition: all 0.3s ease-in-out;
}

.card img {
	width: 100%;
	transition: all 0.3s ease-in-out;
	border-top: 3px solid #F4B508AB;
}

.cardTextPos {
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.card-header {
	padding: 2%;
	height: auto;
	font-size: 20px;
	font-weight: 600;
	text-align: center;
	margin: 10px 0;
}

@media only screen and (max-width: 800px) {
	.card-header {
		font-size: calc(12px + 0.25vw);
	}
}

.card img:hover {
	transform: scale(1.06);
	border-top: 3px solid #F4B508;
}

.cardImage:hover {
	color: #ddd;
	text-shadow: 3px 3px 4px #222;
}

.footer {
	font-size: 16px;
	text-align-last: center;
	min-height: 40px;
	margin: 4vh 0;
	word-spacing: 4px;
}

@media only screen and (max-width: 800px) {
	.footer {
		font-size: calc(8px + 0.25vw);
	}
}

@keyframes hellofade {
	0% {
		opacity: 0;
		transform: translateY(40px);
		text-shadow: 1px 1px 0px #22222200
	}
	60% {
		transform: translateY(0);
	}
	100% {
		opacity: 1;
	}
}

@keyframes fade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}