video {
	display: none;
	width: auto;
	height: 100vh;
	width: 100vw;
	object-fit: cover;
	opacity: 0.98;
	pointer-events: none;
}

.hide-controls::-webkit-media-controls {
	display: none !important;
}

.hide-controls::-moz-media-controls {
	display: none !important;
}

.hide-controls::-ms-media-controls {
	display: none !important;
}

.hide-controls::-o-media-controls {
	display: none !important;
}

.hide-controls::-media-controls {
	display: none !important;
}

.praybtnimg {
	position: absolute;
	z-index: 1;
	object-fit: cover;
	background-position: center;
	filter: blur(2px);
	opacity: 0;
	transition: opacity 1s cubic-bezier(0.4, 0, 1, 1);
}

#videoContainer {
	display: none;
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.5);
	justify-content: center;
	align-items: center;
	opacity: 1;
	transition: opacity 0.5s ease-in-out;
	z-index: 999;
}

.qderr {
	opacity: 0;
	font-weight: bold;
	color: #c6232a;
	margin-right: auto;
	margin-left: auto;
	position: absolute;
	transition: opacity 0.2s cubic-bezier(0.4, 0, 1, 1), transform 0.5s cubic-bezier(0.74, 1.54, 0.72, 1.09);
}


.showcard {
	z-index: 9;
	display: none;
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	backdrop-filter: blur(5px);
	justify-content: center;
	align-items: center;
	transition: opacity 1s cubic-bezier(0.4, 0, 1, 1), transform 0.5s cubic-bezier(0.93, -0.2, 1, 1);
	opacity: 0;
}

.showcardcon {
	transform: translate(-50%, -50%);
	position: absolute;
	top: 38%;
	left: 50%;
}

.card {
	overflow: hidden;
	width: 560px;
	height: auto;
	background: white;
	border-radius: 30px;
	transition: 0.2s ease-in-out;
	box-shadow: 4px 4px 6px 2px rgb(0 0 0 / 19%);
}

.cardimg {
	width: 560px;
	height: 280px;
	border-top-left-radius: 30px;
	border-top-right-radius: 30px;
	background: linear-gradient(#e66465, #9198e5);
	display: flex;
	justify-content: right;
}

.cardtext {
	margin: 20px;
	display: flex;
	flex-direction: column;
}

.cardicon-box {
	display: flex;
}

.cardh3 {
	margin-top: -10px;
	margin-bottom: 10px;
	font-size: 20px;
	font-weight: 600;
	color: black;
}

.cardp {
	white-space: pre-line;
	line-height: 22px;
	font-weight: bold;
	color: #494949;
	font-size: 14px;
}

.cardspan {
	margin-left: 10px;
	font-size: 13px;
	font-weight: 500;
	color: #9198e5;
}

.card:hover {
	cursor: pointer;
	box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}


.getcardbtn {
	transform: translate(-50%, -50%);
	position: absolute;
	top: 80%;
	left: 50%;
}


button {
	/* Variables */
	--button_radius: 0.75em;
	--button_color: #e8e8e8;
	--button_outline_color: #000000;
	font-size: 17px;
	font-weight: bold;
	border: none;
	cursor: pointer;
	border-radius: var(--button_radius);
	background: var(--button_outline_color);
}

.button_top {
	display: block;
	box-sizing: border-box;
	border: 2px solid var(--button_outline_color);
	border-radius: var(--button_radius);
	padding: 0.75em 1.5em;
	background: var(--button_color);
	color: var(--button_outline_color);
	transform: translateY(-0.2em);
	transition: transform 0.1s ease;
}

button:hover .button_top {
	/* Pull the button upwards when hovered */
	transform: translateY(-0.33em);
}

button:active .button_top {
	/* Push the button downwards when pressed */
	transform: translateY(0);
}

@media (max-width: 867px) {
	.card {
		overflow: hidden;
		width: 95vw;
		height: auto;
		background: white;
		border-radius: 30px;
		transition: 0.2s ease-in-out;
		box-shadow: 4px 4px 6px 2px rgb(0 0 0 / 19%);
	}

	.cardimg {
		width: 100%;
		height: auto;
		border-top-left-radius: 30px;
		border-top-right-radius: 30px;
		background: linear-gradient(#e66465, #9198e5);
		display: flex;
		justify-content: right;
	}
}


.showCardItemDIV {
	z-index: 999;
	transform: translate(-50%, -50%);
	top: 50%;
	width: 100vw;
	height: 100vh;
	left: 50%;
	position: fixed;
	justify-content: space-evenly;
	display: none;
	flex-direction: column;
	align-items: center;
	backdrop-filter: blur(5px);
}

.CardContainer {
	top: 25%;
	position: relative;
	display: flex;
	justify-content: center;
}

.CardContainer .glass {
	position: absolute;
	width: 180px;
	height: 200px;
	background: linear-gradient(#adadad22, transparent);
	border: 1px solid rgb(102 102 102 / 10%);
	box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.15);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 1s;
	border-radius: 10px;
	margin: 0 -45px;
	backdrop-filter: blur(10px);
	transform: rotate(calc(var(--r) * 1deg));
	opacity: clamp(0, calc((50 - var(--r)) /50), 1);
}

.CardContainer:hover .glass {
	transform:
		rotate(0deg) translateX(calc((var(--r) + 5) * 20px));
	margin: 0 10px;
	opacity: 1;
}