.gallery-container{
	display: none;
}
.event_box {
	position: relative;
	padding:7%;
	background:#ffffff;
 	border-radius:30px;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.event_box:hover{
	background-color:#FBDA79;
	transition: 0.8s;
}
.all_events {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	column-gap: 32px;
	row-gap: 60px;
}
.event_box .flex{
	padding-top: 12px;
	display: flex;
	align-items: flex-start;
	gap: 20px;
	justify-content: space-between;
}
.event_box .plus{
	min-width: 40px;
	position: relative;
}
.event_box .plus ellipse{
	transition: 0.3s;
	cursor: pointer;
}
.event_box:hover .plus ellipse{
	fill: #fff;
}
.event_box .plus .white{
	position: absolute;
	right: 0;
	top: 0;
	opacity: 0;
}
.event_box .plus img{
	cursor: pointer;
	transition: 0.5s;
}
.event_box:hover .yellow{
	opacity: 0;
}
.event_box:hover .white{
	opacity: 1;
}
.single-post-image img {
	width: 100%;
	border-radius: 15px;
}
.single-post-date {
	color: #333333B2;
	font-size: 16px;
}
.hide {
	display: none;
}
.single-post-title {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 20px;
	margin-top: 5px;
}
a.view-btn {
	font-size: 18px;
	color: var( --e-global-color-primary );
	font-weight: 700;
	line-height: 1.4;
	border-bottom: 1px solid var( --e-global-color-primary );
}
.ShareButton {
	position: absolute;
	right: 15px;
	top: 15px;
}
#load-more-container .elementor-widget-button{
	text-align: center;
	margin-top: 40px;
}
.ShareButton {
	cursor: pointer;
}

.SharePopup {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	/*   display: flex; */
	background-color: #00000080;
}
.SharePopup.show {
	animation: 0.5s appear forwards;
	display: flex;
	z-index: 1;
}
.CloseSharePopup {
	height: 12px !important;
}
@keyframes appear {
	0% {
		opacity: 0;
		display: none;
	}
	100% {
		opacity: 1;
		display: flex;
	}
}
.SharePopup .Popupbox {
	position: relative;
	background-color: #fff;
	max-width: 400px;
	width: fit-content;
	margin: auto;
	padding: 30px 20px 20px 20px;
	border-radius: 15px;
}
.SharePopup .ShareTitle {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 18px;
}
.SharePopup .icons {
	display: flex;
	align-items: center;
	gap: 16px;
}
.SharePopup .icons a {
	background-color: #c10c07;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s;
}
.SharePopup .icons a:hover {
	transform: scale(1.1);
}
.SharePopup .icons img {
	filter: contrast(0) brightness(2);
}
.CloseSharePopup {
	cursor: pointer;
	position: absolute;
	right: 10px;
	top: 10px;
}

@media(max-width: 1024px) and (min-width: 768px){
	.all_events {
		column-gap: 15px;
		    grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media(max-width: 767px){
	.all_events {
		grid-template-columns: repeat(1, minmax(0, 1fr));
		gap:40px;
		padding-bottom:40px;
	}
}