/*
 * Globals
 */
.pattern-1 {
	background: linear-gradient(rgba(255, 255, 255, 166), rgba(255, 255, 255, .6)), url("../images/pattern.jpg");
	background-repeat: repeat;
	background-size: cover;

}
/* Custom default button */
.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
	color: #333;
	text-shadow: none;
	/* Prevent inheritance from `body` */
}
.topHead h1 {
	margin: 20px 0 8px 0;
	padding: 0;
	font-size: 70px;
	background-image: linear-gradient(to right, red, #7a00ff, #00e7ff, green, blue, indigo, violet);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	/*font-weight: 700;*/
	font-family: 'shelleyregular';
}
.topHead h3 {
	margin: 0 0 15px 0;
	padding: 0;
	font-size: 30px;
	color: #444;
	font-weight: 400;
}
.topHead p {
	color: #555555;
	font-size: 19px;
	line-height: 1.4;
}
.topHead .btn {
	background-color: #0068BD;
	color: #fff;
	border-radius: 100px;
}
.description-box {
	position: relative;
	border: 1px solid #ccc;
	padding: 15px;
	text-align: left;
	min-height: 100px;
	font-size: 14px;
	background-color: #f8f9fa;
	border-radius: 8px;
	margin-top: 10px;
}

.description-box .read-more-btn {
	position: absolute;
	bottom: 10px;
	right: 10px;
	border: none;
	background: transparent;
	font-size: 30px;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.description-box .read-more-btn.rotate {
	transform: rotate(90deg);
}

.description-box .full-text {
	margin-top: 10px;
}
.badge.badge-top {
	background-color: #DA2A41 !important;
	color: #fff; /* white text for contrast */
	border: 3px solid #fff; /* thickness = 3px, color = white */
}
.badge.badge-top.badge-center {
    position: relative;
    left: 0;
    top: 0;
    margin: 0 0 20px 0;
    bottom: 0;
}
.media-card {
	position: relative;
	/* overflow: hidden; */
	border-radius: 1rem;
	background: #151922;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
	transition: transform .25s ease, box-shadow .25s ease;
	aspect-ratio: 16 / 12;
}
.media-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, .5);
}
.thumb,.player-wrap {
	width: 100%;
	height: 100%;
	border-radius: 1rem;
	overflow: hidden;
}
.thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.overlay {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	background: linear-gradient(180deg, rgba(0, 0, 0, .0) 0%, rgba(0, 0, 0, .65) 100%);
	opacity: 0;
	transition: opacity .25s ease;
	align-content: center;
	border-radius: 1rem;
}
.overlay p {
	color: #000;
	font-size: 15px;
	margin-top: 15px;
	position: absolute;
	bottom: -50px;
}
.media-card:hover .overlay {
	opacity: 1;
}
.play-btn {
	display: inline-flex;
	align-items: center;
	gap: .6rem;
	padding: .65rem 1rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, .12);
	backdrop-filter: blur(6px);
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	border: 1px solid rgba(255, 255, 255, .2);
	transition: 0.5s all !important;
}
.play-btn .bi {
	font-size: 1.25rem;
}
.play-btn:hover {
	background: rgba(255, 255, 255, .2);
	color: #fff;
}
.badge-top {
	position: absolute;
	top: .75rem;
	left: .75rem;
	z-index: 2;
	font-weight: 600;
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .25);
	color: #fff;
	backdrop-filter: blur(50px);
}
.close-btn {
	position: absolute;
	top: .75rem;
	right: .75rem;
	z-index: 3;
	background: rgb(255 255 255 / 50%);
	border: none;
	color: #fff;
	border-radius: 50%;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
/* Smooth video appearance */
.player-wrap {
	position: relative;
	inset: 0;
	background: #000;
	display: none;
	border-radius: 1rem;
	overflow: hidden;
}
.player-wrap.active {
	display: block;
	animation: fadeIn .25s ease;
}
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
footer {
	background: #555555;
	margin-top: 50px;
}


      