@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
.body{
	/*margin:0;
	padding: 0;*/
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background:#000;  
}

.cardi{
	position: relative;
	width: 100%;
	height: 400px;
	background: #262626;
	overflow: hidden;	
}
input, 
.togglei
{
	position: absolute;
	width: 50px;
	height: 50px;
	bottom: 20px;
	right: 20px;
	outline: none;
	z-index: 10;
}
input
{
	opacity: 0;
}
.togglei
{
	pointer-events: none;
	border-radius: 0%;
	background:white;
	transition: 0.5s;
	text-align: center;
	line-height: 50px;
	font-size: 36px;
	box-shadow: 0 0 0 0px white;
}
input:checked ~ .togglei
{
	box-shadow: 0 0 0 1190px #0911ed57;
    transform: rotate(180deg);
	
}

.imgBx,
.det{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 600px;
	
}

.det{
	padding: 20px;
	box-sizing: border-box;
	z-index: 11;
	pointer-events: none;
	transition: 0.5s;
	opacity: 0;
}

input:checked ~ .det{
	opacity: 1;
	transition-delay: 0.5s;	
}

h7{
	color:#f7f70c;
	text-align: justify;
	font-family:Montserrat;
	font-size: 11px;
}

h8{
	padding: 20px;
	color:#f7f70c;
	text-align: center;
	font-family: Montserrat;
    text-align: justify;
    font-size: 11px;
}

det h7 {
    margin-bottom: 5px; 
}

det h8 {
	margin: 0;
	padding: 0;
	color:#fff;
    text-align: justify;
}