.login-container {
	width: 500px;
	padding: 50px;
	border-radius: 10px;
	border: 0px;

	transition-duration: 200ms;

	background-color: #3787ffff;
}
.login-container:hover {
	transform: translateY(-3px);
}
.user-name {
	border-radius: 10px;
	background-color: #ffffff1c;
	box-shadow: -3px 3px 2px #00000044;
}
.err-msg {
	color: white;
	padding: 10px;
	border-radius: 10px;
	background-color: #ff0000ff;
	box-shadow: -3px 3px 2px #00000044;

	animation: disappear 2s forwards;
}
@keyframes disappear {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

/* *
    *   Events and Announcement
    * 
    * */

[class^="clamp-"] {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.clamp-1 {
	-webkit-line-clamp: 1;
}
.clamp-2 {
	-webkit-line-clamp: 2;
}
.clamp-3 {
	-webkit-line-clamp: 3;
}
.clamp-4 {
	-webkit-line-clamp: 4;
}
.clamp-5 {
	-webkit-line-clamp: 5;
}
.clamp-6 {
	-webkit-line-clamp: 6;
}
.clamp-7 {
	-webkit-line-clamp: 7;
}
.clamp-8 {
	-webkit-line-clamp: 8;
}
.clamp-9 {
	-webkit-line-clamp: 9;
}
.clamp-10 {
	-webkit-line-clamp: 10;
}

.slider-btn {
	width: 55px;
	height: 55px;
	background-color: white;
	padding: 15px;
	border-radius: 50%;
	border: 1px solid #00000034;
}

.slider-btn-container {
	position: absolute;
	top: 50%;
	left: 0px;
	display: flex;

	justify-content: space-between;
}

.word {
	margin: 5px;
	display: inline-block;
	background: red;
	color: white;
	padding: 5px 10px;
	border-radius: 4px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.event-card {
	height: auto;
}
figure,
figure a {
	display: block;
	width: 100%;
	height: 100%;
	margin-bottom: 2px;
}

figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	cursor: zoom-in;
	margin: 0px;
}

.img-one {
	height: 400px;
}

.two-container .img-two {
	height: 200px;
}

.three-top .img-three-top {
	height: 200px;
}

.three-bottom {
	display: flex;
	gap: 3px;
}

.three-bottom figure {
	flex: 1;
	height: 200px;
}

.more-images-container {
	position: relative;
	height: 200px;
	width: 50%;
	cursor: zoom-in;
}

.more-images-container figure {
	height: 100%;
}

.more-images-container .img-more-fallback {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.more-images-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	color: white;
	font-size: 2.2em;
	display: flex;
	justify-content: center;
	align-items: center;
	pointer-events: none;
	font-weight: bold;
}
.event-container {
	display: flex;
	overflow-x: auto;
	gap: 5px;
	padding: 5px 0;
}
.event-container::-webkit-scrollbar {
	display: none;
}

.event-container {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

@media (max-width: 768px) {
	.event-container {
		display: block;
		overflow-x: visible;
	}

	.event-card {
		width: 100%;
	}

	.slide-btn {
		display: none;
	}
}
/* *
*   Events Individual Page
*
* */
.carousel-items img {
	height: auto;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: contain;
}
.masonry-services {
	columns: 350px;
}
/* *
*   services
*
* */
.card-masonry {
	margin-bottom: 1em;
	width: 100%;
	break-inside: avoid;
	color: black;
}
.masonry-eletter {
	columns: 400px;
}

@media screen and (min-width: 540px) {
	.event-content {
		max-height: 50vh;
		overflow-y: auto; /* better than scroll */
	}
}